Revert previous bugfix for MetaData list type form controls, and change the

hoverhelp instead.
This commit is contained in:
Colin Kuskie 2009-05-29 15:37:16 +00:00
parent 26142d4730
commit 91694a2e97
4 changed files with 12 additions and 10 deletions

View file

@ -961,7 +961,7 @@ sub getEditForm {
my $meta = $self->getMetaDataFields();
foreach my $field (keys %$meta) {
my $fieldType = $meta->{$field}{fieldType} || "text";
my $options = WebGUI::Operation::Shared::secureEval($session,$meta->{$field}{possibleValues});
my $options = $meta->{$field}{possibleValues};
# Add a "Select..." option on top of a select list to prevent from
# saving the value on top of the list when no choice is made.
if("\l$fieldType" eq "selectBox") {