From c15e4ffb10348509d8ee551ebfecf2a49682fd1d Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Mon, 3 Oct 2011 13:56:49 +0000 Subject: [PATCH] Small fix for bulk modify: non-homogeneous fields may be mandatory... SVN:trunk[1626] --- pages/UI.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/UI.php b/pages/UI.php index d30887e92..b58c5425f 100644 --- a/pages/UI.php +++ b/pages/UI.php @@ -842,7 +842,7 @@ try $currValue = $oObj->Get($sAttCode); if ($oAttDef instanceof AttributeCaseLog) { - $currValue = ''; + $currValue = ' '; // Don't put an empty string, in case the field would be considered as mandatory... } if (is_object($currValue)) continue; // Skip non scalar values... if(!array_key_exists($currValue, $aValues[$sAttCode]))