]> sipb.mit.edu Git - ikiwiki.git/commitdiff
add missing getsetup hook
authorJoey Hess <joey@kodama.kitenet.net>
Sat, 18 Oct 2008 01:29:05 +0000 (21:29 -0400)
committerJoey Hess <joey@kodama.kitenet.net>
Sat, 18 Oct 2008 01:29:05 +0000 (21:29 -0400)
IkiWiki/Plugin/relativedate.pm

index 99265676b7cfd3bde4067e469af1b09bbb99dd51..2895f6d57ecf84876ed0be1de8d07254ab52ca9f 100644 (file)
@@ -7,6 +7,7 @@ use IkiWiki 2.00;
 
 sub import { #{{{
        add_underlay("javascript");
+       hook(type => "getsetup", id => "relativedate", call => \&getsetup);
        hook(type => "format", id => "relativedate", call => \&format);
 } # }}}