ExtensibleSet: make sure to stop on errors...

...that have been "manually" set
This commit is contained in:
Thomas Gelf 2017-08-22 17:43:25 +02:00
parent 2968b541ca
commit b3ae6ea68b
1 changed files with 4 additions and 0 deletions

View File

@ -80,6 +80,10 @@ class ExtensibleSet extends FormElement
return false;
}
if ($this->hasErrors()) {
return false;
}
return true;
}
}