Fix checking empty value. (#3084)

This commit is contained in:
Alexander Shursha 2018-12-31 11:21:02 +03:00 committed by Ad Schellevis
parent d17209e9ab
commit d7579d3134

View File

@ -114,7 +114,7 @@ class UIModelGrid
$row[$fieldname] .= $fieldValue['value'];
}
}
if (empty($row[$fieldname])) {
if ($row[$fieldname] === null) {
$row[$fieldname] = "";
}
}