aboutsummaryrefslogtreecommitdiff
path: root/IkiWiki/Plugin/more.pm
diff options
context:
space:
mode:
authorjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-05-17 19:55:11 +0000
committerjoey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071>2007-05-17 19:55:11 +0000
commitcf35ee04cddd7b9b39636499dd24b689443c0e97 (patch)
treec5b052a1edf1228f786bfc65229ae634f3c4b1c0 /IkiWiki/Plugin/more.pm
parentfca6ab6def2536a6566fe3ddca2c069397f856b1 (diff)
downloadikiwiki-cf35ee04cddd7b9b39636499dd24b689443c0e97.tar
ikiwiki-cf35ee04cddd7b9b39636499dd24b689443c0e97.tar.gz
* Add a destpage parameter to the filter hook.
* Fix links to smilies generated by the smiley plugin for inlined pages. The old links were often wrong, but often still worked by accident.
Diffstat (limited to 'IkiWiki/Plugin/more.pm')
-rw-r--r--IkiWiki/Plugin/more.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/more.pm b/IkiWiki/Plugin/more.pm
index 6a34682ba..667cd6415 100644
--- a/IkiWiki/Plugin/more.pm
+++ b/IkiWiki/Plugin/more.pm
@@ -24,7 +24,7 @@ sub preprocess (@) { #{{{
}
else {
$params{text}=IkiWiki::preprocess($params{page}, $params{destpage},
- IkiWiki::filter($params{page}, $params{text}));
+ IkiWiki::filter($params{page}, $params{destpage}, $params{text}));
return "<a name=\"more\"></a>\n\n".$params{text};
}
}