Bugfix with empty values.

This commit is contained in:
Markus Birth 2016-08-03 13:32:23 +02:00
parent 1cfb611e30
commit 5f2da89966

View File

@ -61,7 +61,7 @@ class FieldDefinition
*/
private function addValueTranslations(&$field)
{
if (!isset($field['value'])) {
if (!isset($field['value']) || empty($field['value'])) {
return;
}
switch ($field['type']) {