mirror of
https://github.com/silverstripe/silverstripe-userforms.git
synced 2024-10-22 17:05:42 +02:00
Prevent 'undefined index' warnings when optional country dropdown fields are left empty
This commit is contained in:
parent
f9094bed09
commit
418017494f
@ -47,7 +47,7 @@ class EditableCountryDropdownField extends EditableFormField
|
||||
|
||||
public function getValueFromData($data)
|
||||
{
|
||||
if (isset($data[$this->Name])) {
|
||||
if (isset($data[$this->Name]) && !empty($data[$this->Name])) {
|
||||
$source = $this->getFormField()->getSource();
|
||||
return $source[$data[$this->Name]];
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user