diff options
author | Simon McVittie <smcv@ http://smcv.pseudorandom.co.uk/> | 2008-12-11 02:22:20 +0000 |
---|---|---|
committer | Simon McVittie <smcv@ http://smcv.pseudorandom.co.uk/> | 2008-12-11 21:14:05 +0000 |
commit | 1698364da0699d1494ee305162e33f48746057c0 (patch) | |
tree | 68591f5f17d9799f61f7eca3d154c80e3cb56533 /IkiWiki | |
parent | f29a6070251c7253d3e12568b72a934b2f9bbfed (diff) | |
download | ikiwiki-1698364da0699d1494ee305162e33f48746057c0.tar ikiwiki-1698364da0699d1494ee305162e33f48746057c0.tar.gz |
comments: fix invocation of possibly_foolish_untaint
Diffstat (limited to 'IkiWiki')
-rw-r--r-- | IkiWiki/Plugin/comments.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/IkiWiki/Plugin/comments.pm b/IkiWiki/Plugin/comments.pm index d1105b366..4fa82f467 100644 --- a/IkiWiki/Plugin/comments.pm +++ b/IkiWiki/Plugin/comments.pm @@ -302,7 +302,7 @@ sub sessioncgi ($$) { #{{{ my $type = $form->param('type'); if (defined $type && length $type && $IkiWiki::hooks{htmlize}{$type}) { - $type = possibly_foolish_untaint($type); + $type = IkiWiki::possibly_foolish_untaint($type); } else { $type = $config{default_pageext}; |