Index: branches/RC/core/units/general/custom_fields.php =================================================================== diff -u -N -r10609 -r10857 --- branches/RC/core/units/general/custom_fields.php (.../custom_fields.php) (revision 10609) +++ branches/RC/core/units/general/custom_fields.php (.../custom_fields.php) (revision 10857) @@ -9,13 +9,13 @@ function GetValuesHash($values_list) { - $optionValuesStr = trim($this->ParseConfigSQL($values_list), ','); + $optionValuesStr = trim($this->ParseConfigSQL($values_list), VALUE_LIST_SEPARATOR); if (!$optionValuesStr) { // no options, then return empty array return Array(); } - $optionValuesTmp = explode(',', $optionValuesStr); + $optionValuesTmp = explode(VALUE_LIST_SEPARATOR, $optionValuesStr); $optionValues = Array(); if (substr_count($optionValuesStr, '=') != count($optionValuesTmp)) {