Skip to content
Snippets Groups Projects
Commit 6b63b06c authored by Prasad's avatar Prasad
Browse files

Replace multipicklist delimiter with comma on copy

parent d95c08a6
No related branches found
No related tags found
No related merge requests found
......@@ -139,7 +139,7 @@ class VTUpdateFieldsTask extends VTTask {
$fieldValue = $focus->column_fields[$fieldValue];
if($rightOperandFieldType == 'multipicklist' && $fieldDataType=='string'){
$fieldValue = str_replace(' |##| ', ' ', $fieldValue);
$fieldValue = str_replace(' |##| ', ',', $fieldValue);
}
}
$fieldValueInDB = $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