aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/search.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-05-06 23:07:08 -0400
committerJoey Hess <joey@kitenet.net>2010-05-06 23:14:36 -0400
commit121e2ffc2f25bf264a68d35e80a9386995fa9e5a (patch)
treef6a363068cb77bbfc659ceeb01961b446bd091a0 /IkiWiki/Plugin/search.pm
parent4c320176c080038f95131f39ecaca3101b4b1745 (diff)
downloadikiwiki-121e2ffc2f25bf264a68d35e80a9386995fa9e5a.tar
ikiwiki-121e2ffc2f25bf264a68d35e80a9386995fa9e5a.tar.gz
Renamed postscan hook to indexhtml, to reflect its changed position.
Probably only the search plugin uses it, so this seemed safe.
Diffstat (limited to 'IkiWiki/Plugin/search.pm')
-rw-r--r--IkiWiki/Plugin/search.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/search.pm b/IkiWiki/Plugin/search.pm
index 9e875c79c..b1f4747fe 100644
--- a/IkiWiki/Plugin/search.pm
+++ b/IkiWiki/Plugin/search.pm
@@ -10,7 +10,7 @@ sub import {
hook(type => "getsetup", id => "search", call => \&getsetup);
hook(type => "checkconfig", id => "search", call => \&checkconfig);
hook(type => "pagetemplate", id => "search", call => \&pagetemplate);
- hook(type => "postscan", id => "search", call => \&index);
+ hook(type => "indexhtml", id => "search", call => \&index);
hook(type => "delete", id => "search", call => \&delete);
hook(type => "cgi", id => "search", call => \&cgi);
}