fix for keyword control only initially showing a single keyword

This commit is contained in:
Graham Knop 2009-04-03 19:26:07 +00:00
parent 577f1aad32
commit ff9d14b17c
5 changed files with 5 additions and 5 deletions

View file

@ -689,7 +689,7 @@ Renders the form field to HTML as a hidden field rather than whatever field type
sub toHtmlAsHidden {
my $self = shift;
return '<input type="hidden" name="'.$self->get("name").'" value="'.
$self->fixQuotes($self->fixMacros($self->fixSpecialCharacters($self->getOriginalValue()))).'" />'."\n";
$self->fixQuotes($self->fixMacros($self->fixSpecialCharacters(scalar $self->getOriginalValue()))).'" />'."\n";
}
#-------------------------------------------------------------------