From: Joey Hess Date: Sat, 26 Jul 2008 23:05:52 +0000 (-0400) Subject: two typos X-Git-Tag: 2.60~187 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=f892cc8c50ea6117fcc908838be58c6c34e1d0ea;p=ikiwiki.git two typos --- diff --git a/IkiWiki/Plugin/calendar.pm b/IkiWiki/Plugin/calendar.pm index b808c9d1d..dd6898c57 100644 --- a/IkiWiki/Plugin/calendar.pm +++ b/IkiWiki/Plugin/calendar.pm @@ -30,8 +30,8 @@ my $time=time; my @now=localtime($time); sub import { #{{{ - hook(type => "getsetup", id => "version", call => \&getsetup); - hook(type => "needsbuild", id => "version", call => \&needsbuild); + hook(type => "getsetup", id => "calendar", call => \&getsetup); + hook(type => "needsbuild", id => "calendar", call => \&needsbuild); hook(type => "preprocess", id => "calendar", call => \&preprocess); } #}}}