]> sipb.mit.edu Git - ikiwiki.git/commitdiff
fix hook names
authorJoey Hess <joey@gnu.kitenet.net>
Wed, 25 Nov 2009 11:49:26 +0000 (06:49 -0500)
committerJoey Hess <joey@gnu.kitenet.net>
Wed, 25 Nov 2009 11:49:26 +0000 (06:49 -0500)
IkiWiki/Plugin/date.pm

index 8f2aa73d6f60eeca3aece6954a146219ebc63feb..652e6df0a67ca75aba0e2eec9bdbbc3bb6c04e45 100644 (file)
@@ -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 () {