From: Joey Hess Date: Sat, 17 Apr 2010 19:43:58 +0000 (-0400) Subject: fix autofile call X-Git-Tag: 3.20100427~62^2~23 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=3651e6263c55a0b6184fe46c856a96740621361f;p=ikiwiki.git fix autofile call --- diff --git a/IkiWiki/Plugin/tag.pm b/IkiWiki/Plugin/tag.pm index 1145a9f13..957b012ef 100644 --- a/IkiWiki/Plugin/tag.pm +++ b/IkiWiki/Plugin/tag.pm @@ -70,7 +70,7 @@ sub gentag ($) { my $tagfile = newpagefile(tagpage($tag), $config{default_pageext}); $tagfile=~s/^\///; - add_autofile($tagfile, sub { + add_autofile($tagfile, "tag", sub { debug(sprintf(gettext("creating tag page %s"), $tag)); my $template=template("autotag.tmpl");