comments: fix invocation of possibly_foolish_untaint
parent
f29a607025
commit
1698364da0
|
@ -302,7 +302,7 @@ sub sessioncgi ($$) { #{{{
|
||||||
|
|
||||||
my $type = $form->param('type');
|
my $type = $form->param('type');
|
||||||
if (defined $type && length $type && $IkiWiki::hooks{htmlize}{$type}) {
|
if (defined $type && length $type && $IkiWiki::hooks{htmlize}{$type}) {
|
||||||
$type = possibly_foolish_untaint($type);
|
$type = IkiWiki::possibly_foolish_untaint($type);
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
$type = $config{default_pageext};
|
$type = $config{default_pageext};
|
||||||
|
|
Loading…
Reference in New Issue