mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
fixed empty string always on scaffolded enum fields
This commit is contained in:
parent
f365134375
commit
8a7f9ede97
@ -95,7 +95,9 @@ class Enum extends StringField {
|
||||
if(!$name) $name = $this->name;
|
||||
|
||||
$field = new DropdownField($name, $title, $this->enumValues($hasEmpty), $value, $form);
|
||||
if($hasEmpty) {
|
||||
$field->setEmptyString($emptyString);
|
||||
}
|
||||
|
||||
return $field;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user