diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-10-17 21:29:05 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-10-17 21:29:05 -0400 |
commit | 745dc1c62f46bacda60d01283145b5baa0adfea1 (patch) | |
tree | 568cc1e528dbba8a043b4753c29b08b0c2a75a64 /IkiWiki/Plugin | |
parent | 02ec92c6cb0cfb86fb9a0b65addbd8c0934869c7 (diff) |
add missing getsetup hook
Diffstat (limited to 'IkiWiki/Plugin')
-rw-r--r-- | IkiWiki/Plugin/relativedate.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/relativedate.pm b/IkiWiki/Plugin/relativedate.pm index 99265676b..2895f6d57 100644 --- a/IkiWiki/Plugin/relativedate.pm +++ b/IkiWiki/Plugin/relativedate.pm @@ -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); } # }}} |