Merge pull request #1506 from tschallacka/FormFieldCatchForEmptyYaml

Fixed form field parsing to accept no config
This commit is contained in:
Samuel Georges 2015-10-17 10:23:58 +11:00
commit f446f8acd4
1 changed files with 4 additions and 0 deletions

View File

@ -254,6 +254,10 @@ class FormField
*/
protected function evalConfig($config)
{
if(is_null($config)) {
$config = [];
}
/*
* Standard config:property values
*/