diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-06 23:07:08 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-06 23:14:36 -0400 |
commit | 121e2ffc2f25bf264a68d35e80a9386995fa9e5a (patch) | |
tree | f6a363068cb77bbfc659ceeb01961b446bd091a0 /IkiWiki/Render.pm | |
parent | 4c320176c080038f95131f39ecaca3101b4b1745 (diff) | |
download | ikiwiki-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/Render.pm')
-rw-r--r-- | IkiWiki/Render.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index e5ba0079b..30e3d4199 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -62,7 +62,7 @@ sub genpage ($$) { my $page=shift; my $content=shift; - run_hooks(postscan => sub { + run_hooks(indexhtml => sub { shift->(page => $page, content => $content); }); |