clarify
authorJoey Hess <joey@kitenet.net>
Wed, 21 Apr 2010 23:49:11 +0000 (19:49 -0400)
committerJoey Hess <joey@kitenet.net>
Wed, 21 Apr 2010 23:49:11 +0000 (19:49 -0400)
IkiWiki/Plugin/tag.pm

index 72ae682f3121f31df87bed58dce79341f58abd07..dd7583ab29477b8f4ed400dc2b8496c4617f11f3 100644 (file)
@@ -170,8 +170,8 @@ package IkiWiki::PageSpec;
 
 sub match_tagged ($$;@) {
        my $page=shift;
-       my $glob=shift;
-       return match_link($page, IkiWiki::Plugin::tag::taglink($glob), linktype => 'tag', @_);
+       my $glob=IkiWiki::Plugin::tag::taglink(shift);
+       return match_link($page, $glob, linktype => 'tag', @_);
 }
 
 1