Merge pull request #1506 from tschallacka/FormFieldCatchForEmptyYaml
Fixed form field parsing to accept no config
This commit is contained in:
commit
f446f8acd4
|
|
@ -254,6 +254,10 @@ class FormField
|
|||
*/
|
||||
protected function evalConfig($config)
|
||||
{
|
||||
if(is_null($config)) {
|
||||
$config = [];
|
||||
}
|
||||
|
||||
/*
|
||||
* Standard config:property values
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in New Issue