diff options
author | Joey Hess <joey@kitenet.net> | 2010-05-06 23:20:48 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2010-05-06 23:20:48 -0400 |
commit | ea4967f184bf0a27eaa2dc81da1084780756156a (patch) | |
tree | e277454c3c67b6cafb17cce16d87493ae2bb0348 /IkiWiki/Render.pm | |
parent | 121e2ffc2f25bf264a68d35e80a9386995fa9e5a (diff) | |
download | ikiwiki-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.pm | 2 |
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; |