diff options
author | Joey Hess <joey@kitenet.net> | 2010-04-17 15:43:58 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-04-17 15:43:58 -0400 |
commit | 3651e6263c55a0b6184fe46c856a96740621361f (patch) | |
tree | 5ef67079e118b3d16e92e1ed5369ac3d88a19ae7 /IkiWiki/Plugin | |
parent | adc196a8b53c0b0b4f9ec4cbcea85ba37e421b59 (diff) |
fix autofile call
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/tag.pm | 2 |
1 files changed, 1 insertions, 1 deletions
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"); |