From: Joey Hess Date: Wed, 6 May 2009 17:13:01 +0000 (-0400) Subject: remove pagespec_match_list override for external X-Git-Url: https://sipb.mit.edu/gitweb.cgi/ikiwiki.git/commitdiff_plain/838955aba445f29b7990c7be97c505b6cbe86057?hp=3c66e1552b70fe5ed5211aafcf127c647d79b481 remove pagespec_match_list override for external Not needed since it returns a list of pages, not a fail/success object. --- diff --git a/IkiWiki/Plugin/external.pm b/IkiWiki/Plugin/external.pm index 57a72eb68..0d292dfc2 100644 --- a/IkiWiki/Plugin/external.pm +++ b/IkiWiki/Plugin/external.pm @@ -239,14 +239,4 @@ sub pagespec_match ($@) { $page, $spec, @_)); } -sub pagespec_match_list ($@) { - # convert return object into a XML RPC boolean - my $plugin=shift; - my $pages=shift; - my $spec=shift; - - return RPC::XML::boolean->new(0 + IkiWiki::pagespec_match_list( - $pages, $spec, @_)); -} - 1