Skip to content
Snippets Groups Projects
Commit 440b96ca authored by yogeshwar's avatar yogeshwar
Browse files

#Fixes::157692300::yogeshwar::custom field Multi-Combo box issue

parent cf6b27ef
No related branches found
No related tags found
No related merge requests found
......@@ -156,10 +156,10 @@ class Vtiger_Save_Action extends Vtiger_Action_Controller {
$fieldModelList = $moduleModel->getFields();
foreach ($fieldModelList as $fieldName => $fieldModel) {
$fieldValue = $request->get($fieldName, null);
if(is_array($fieldValue)){
$fieldDataType = $fieldModel->getFieldDataType();
if(is_array($fieldValue) && $fieldDataType == 'multipicklist'){
$fieldValue=implode(' |##| ',$fieldValue);
}
$fieldDataType = $fieldModel->getFieldDataType();
if($fieldDataType == 'time' && $fieldValue !== null){
$fieldValue = Vtiger_Time_UIType::getTimeValueWithSeconds($fieldValue);
}
......
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