displayValue for list should show values instead of keys

This commit is contained in:
Graham Knop 2008-03-24 09:43:35 +00:00
parent 59282033ea
commit dd6f6ef461

View file

@ -189,7 +189,7 @@ Return all the options
sub displayValue {
my ($self) = @_;
return join ", ", $self->getValues();
return return join ", ", map { $self->get('options')->{$_} } $self->getValues();
}
#-------------------------------------------------------------------