diff options
author | intrigeri <intrigeri@boum.org> | 2010-07-11 11:04:59 +0200 |
---|---|---|
committer | intrigeri <intrigeri@boum.org> | 2010-07-11 11:04:59 +0200 |
commit | d6f9d7743167cb4b58f16f1e371585f09dc15a0b (patch) | |
tree | 7dfd2541f5447e2db60e7a8d192c51865404549a /IkiWiki/Plugin/toggle.pm | |
parent | 4a1cb092baabda6182fd291dfc9810f6c8efb17e (diff) | |
parent | 192ce7a238af9021b0fd6dd571f22409af81ebaf (diff) | |
download | ikiwiki-d6f9d7743167cb4b58f16f1e371585f09dc15a0b.tar ikiwiki-d6f9d7743167cb4b58f16f1e371585f09dc15a0b.tar.gz |
Merge remote branch 'upstream/filter-full' into prv/po
Diffstat (limited to 'IkiWiki/Plugin/toggle.pm')
-rw-r--r-- | IkiWiki/Plugin/toggle.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/toggle.pm b/IkiWiki/Plugin/toggle.pm index 3319421d9..20967d3fd 100644 --- a/IkiWiki/Plugin/toggle.pm +++ b/IkiWiki/Plugin/toggle.pm @@ -50,8 +50,7 @@ sub preprocess_toggleable (@) { # Preprocess the text to expand any preprocessor directives # embedded inside it. - $params{text}=IkiWiki::preprocess($params{page}, $params{destpage}, - IkiWiki::filter($params{page}, $params{destpage}, $params{text})); + $params{text}=IkiWiki::preprocess($params{page}, $params{destpage}, $params{text}); my $id=genid($params{page}, $params{id}); my $class=(lc($params{open}) ne "yes") ? "toggleable" : "toggleable-open"; |