diff options
author | Joey Hess <joey@kitenet.net> | 2011-09-01 11:38:10 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2011-09-01 11:38:10 -0400 |
commit | 7d2b68cd16dd50a76b3b93699e59b7ec4c00a907 (patch) | |
tree | f3dd8dfcf0d4ec6ec61fc0f60563929f710d4210 /IkiWiki | |
parent | 2c2c537dd521bbc659f0499af72ca70078d97d50 (diff) | |
download | ikiwiki-7d2b68cd16dd50a76b3b93699e59b7ec4c00a907.tar ikiwiki-7d2b68cd16dd50a76b3b93699e59b7ec4c00a907.tar.gz |
inline: When indexing internal pages for searching, use the url of the inlining page.
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/inline.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/inline.pm b/IkiWiki/Plugin/inline.pm index 77634066b..159cc5def 100644 --- a/IkiWiki/Plugin/inline.pm +++ b/IkiWiki/Plugin/inline.pm @@ -506,7 +506,7 @@ sub get_inline_content ($$) { if (isinternal($page)) { # make inlined text of internal pages searchable run_hooks(indexhtml => sub { - shift->(page => $page, destpage => $page, + shift->(page => $page, destpage => $destpage, content => $ret); }); } |