aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Render.pm
diff options
context:
space:
mode:
authorJoey Hess <joey@kitenet.net>2010-05-06 23:20:48 -0400
committerJoey Hess <joey@kitenet.net>2010-05-06 23:20:48 -0400
commitea4967f184bf0a27eaa2dc81da1084780756156a (patch)
treee277454c3c67b6cafb17cce16d87493ae2bb0348 /IkiWiki/Render.pm
parent121e2ffc2f25bf264a68d35e80a9386995fa9e5a (diff)
downloadikiwiki-ea4967f184bf0a27eaa2dc81da1084780756156a.tar
ikiwiki-ea4967f184bf0a27eaa2dc81da1084780756156a.tar.gz
inline: Call indexhtml when inlining internal pages, so their text can be indexed for searching.
Diffstat (limited to 'IkiWiki/Render.pm')
-rw-r--r--IkiWiki/Render.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm
index 30e3d4199..b0bd8dee0 100644
--- a/IkiWiki/Render.pm
+++ b/IkiWiki/Render.pm
@@ -63,7 +63,7 @@ sub genpage ($$) {
my $content=shift;
run_hooks(indexhtml => sub {
- shift->(page => $page, content => $content);
+ shift->(page => $page, destpage => $page, content => $content);
});
my $templatefile;