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

@ -85,7 +85,7 @@ Renders the form field to HTML as a table row. The row is not displayed because
sub toHtmlWithWrapper {
my $self = shift;
my $value = $self->fixMacros($self->fixQuotes($self->fixSpecialCharacters($self->getOriginalValue))) || '';
my $value = $self->fixMacros($self->fixQuotes($self->fixSpecialCharacters(scalar $self->getOriginalValue))) || '';
if ($value) {
my $manageButton = $self->session->icon->manage("op=editGroup;gid=".$value);
$self->set("subtext",$manageButton . $self->get("subtext"));