Skip to content
Snippets Groups Projects
Commit 3bbebd4f authored by madhu sr's avatar madhu sr
Browse files

#Fixes::158702954::madhusr::When we select more than 2 values in multi select...

#Fixes::158702954::madhusr::When we select more than 2 values in multi select combo box ,after saving it is displaying only with one value
parent 3d8805d0
No related branches found
No related tags found
1 merge request!1107Fixes: The multipicklist values sent from Calendar module and the quick edit of all modules are concatenated into a string before being stored in the database
......@@ -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');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment