diff options
author | Joey Hess <joey@kitenet.net> | 2010-07-13 15:23:44 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-07-13 15:23:44 -0400 |
commit | fd8bcb32eae53a70d0ac020489fda96fb868f8d4 (patch) | |
tree | 7c3152745c19c39891a8582545d2130ffccce5e8 | |
parent | 40b03990e0d637860872e4cd47e4ee435b23d613 (diff) |
add missing getsetup hook
-rw-r--r-- | IkiWiki/Plugin/404.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/IkiWiki/Plugin/404.pm b/IkiWiki/Plugin/404.pm index 8adfd5dd9..42cfa9e8a 100644 --- a/IkiWiki/Plugin/404.pm +++ b/IkiWiki/Plugin/404.pm @@ -10,6 +10,7 @@ use IkiWiki 3.00; sub import { hook(type => "cgi", id => '404', call => \&cgi); + hook(type => "getsetup", id => '404', call => \&getsetup); IkiWiki::loadplugin("goto"); } |