mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 12:05:37 +00:00
Merge pull request #884 from icecaster/master
Fix: scaffolded Enum dropdown field always returning empty string
This commit is contained in:
commit
ee3954d5d7
@ -95,7 +95,9 @@ class Enum extends StringField {
|
|||||||
if(!$name) $name = $this->name;
|
if(!$name) $name = $this->name;
|
||||||
|
|
||||||
$field = new DropdownField($name, $title, $this->enumValues($hasEmpty), $value, $form);
|
$field = new DropdownField($name, $title, $this->enumValues($hasEmpty), $value, $form);
|
||||||
|
if($hasEmpty) {
|
||||||
$field->setEmptyString($emptyString);
|
$field->setEmptyString($emptyString);
|
||||||
|
}
|
||||||
|
|
||||||
return $field;
|
return $field;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user