aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki
diff options
context:
space:
mode:
authorJoey Hess <joey@kodama.kitenet.net>2008-07-26 19:05:52 -0400
committerJoey Hess <joey@kodama.kitenet.net>2008-07-26 19:05:52 -0400
commitf892cc8c50ea6117fcc908838be58c6c34e1d0ea (patch)
treeb58dc5c5cd18b08c79f435e145a7fb01f0ce5119 /IkiWiki
parent2bffce0d899322c8139f117e302a3b23456af3f5 (diff)
downloadikiwiki-f892cc8c50ea6117fcc908838be58c6c34e1d0ea.tar
ikiwiki-f892cc8c50ea6117fcc908838be58c6c34e1d0ea.tar.gz
two typos
Diffstat (limited to 'IkiWiki')
-rw-r--r--IkiWiki/Plugin/calendar.pm4
1 files changed, 2 insertions, 2 deletions
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);
} #}}}