diff options
author | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-23 20:49:54 +0000 |
---|---|---|
committer | joey <joey@0fa5a96a-9a0e-0410-b3b2-a0fd24251071> | 2006-08-23 20:49:54 +0000 |
commit | 46c33b38324e9e71a9126f1aabd5e73e3358b22b (patch) | |
tree | f18c90156b02fdc18e550c308a714e376661c882 /IkiWiki | |
parent | e6cebb47e17b22dd41e803b6298aec585f1321dc (diff) |
remove unused option
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Render.pm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/IkiWiki/Render.pm b/IkiWiki/Render.pm index cef770c67..f38669728 100644 --- a/IkiWiki/Render.pm +++ b/IkiWiki/Render.pm @@ -84,11 +84,10 @@ sub parentlinks ($) { #{{{ return @ret; } #}}} -sub preprocess ($$$;$) { #{{{ +sub preprocess ($$$) { #{{{ my $page=shift; # the page the data comes from my $destpage=shift; # the page the data will appear in (different for inline) my $content=shift; - my $onlystrip=shift || 0; # strip directives without processing my $handle=sub { my $escape=shift; @@ -97,9 +96,6 @@ sub preprocess ($$$;$) { #{{{ if (length $escape) { return "[[$command $params]]"; } - elsif ($onlystrip) { - return ""; - } elsif (exists $hooks{preprocess}{$command}) { # Note: preserve order of params, some plugins may # consider it significant. |