From 3bbebd4f1468fd540128228c74d29e540e4dfc84 Mon Sep 17 00:00:00 2001 From: "madhu.sr" <madhu.sr@vtigersolutions.com> Date: Sun, 10 Mar 2024 07:45:01 +0530 Subject: [PATCH] #Fixes::158702954::madhusr::When we select more than 2 values in multi select combo box ,after saving it is displaying only with one value --- modules/Calendar/actions/Save.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/Calendar/actions/Save.php b/modules/Calendar/actions/Save.php index 01309bc37..f6b4cf19f 100644 --- a/modules/Calendar/actions/Save.php +++ b/modules/Calendar/actions/Save.php @@ -150,9 +150,6 @@ class Calendar_Save_Action extends Vtiger_Save_Action { if($fieldDataType == 'time' && $fieldValue !== null){ $fieldValue = Vtiger_Time_UIType::getTimeValueWithSeconds($fieldValue); } - if(is_array($fieldValue) && $fieldDataType == 'multipicklist'){ - $fieldValue=implode(' |##| ',$fieldValue); - } // End if ($fieldName === $request->get('field')) { $fieldValue = $request->get('value'); -- GitLab