Skip to content
Snippets Groups Projects
Commit 73318724 authored by Uma's avatar Uma
Browse files

Fixes #1069 ::Uma::Deprecated split api has been replaced with preg_split

parent 55127e11
No related branches found
No related tags found
1 merge request!459Fixes #1069 ::Uma::Deprecated split api has been replaced with preg_split
......@@ -126,7 +126,7 @@ class Vtiger_Filter {
* @access private
*/
function __getColumnValue($fieldInstance) {
$tod = split('~', $fieldInstance->typeofdata);
$tod = preg_split('/~/', $fieldInstance->typeofdata);
$displayinfo = $fieldInstance->getModuleName().'_'.str_replace(' ','_',$fieldInstance->label).':'.$tod[0];
$cvcolvalue = "$fieldInstance->table:$fieldInstance->column:$fieldInstance->name:$displayinfo";
return $cvcolvalue;
......
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