summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Hess <joey@gnu.kitenet.net>2009-11-25 06:49:26 -0500
committerJoey Hess <joey@gnu.kitenet.net>2009-11-25 06:49:26 -0500
commit09dbbaf24573b235b8976339062138ec00b94520 (patch)
tree72f96722dbce6ff0d464a1e01a2997e631e62fbe
parentf4cb6edd0f4d32710e2ef6ddef7de1b06b103389 (diff)
fix hook names
-rw-r--r--IkiWiki/Plugin/date.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/date.pm b/IkiWiki/Plugin/date.pm
index 8f2aa73d6..652e6df0a 100644
--- a/IkiWiki/Plugin/date.pm
+++ b/IkiWiki/Plugin/date.pm
@@ -6,8 +6,8 @@ use strict;
use IkiWiki 3.00;
sub import {
- hook(type => "getsetup", id => "meta", call => \&getsetup);
- hook(type => "preprocess", id => "meta", call => \&preprocess);
+ hook(type => "getsetup", id => "date", call => \&getsetup);
+ hook(type => "preprocess", id => "date", call => \&preprocess);
}
sub getsetup () {