more bugfixes

This commit is contained in:
JT Smith 2004-09-20 22:12:54 +00:00
parent 3ce8565a4f
commit 00ef183f72
2 changed files with 5 additions and 1 deletions

View file

@ -858,7 +858,7 @@ The default value for this form element.
=cut
sub hidden {
return '<input type="hidden" name="'.$_[0]->{name}.'" value="'._fixQuotes($_[0]->{value}).'">'."\n";
return '<input type="hidden" name="'.$_[0]->{name}.'" value="'._fixQuotes(_fixSpecialCharacters($_[0]->{value})).'">'."\n";
}