----------------------------------------
* CRM-13125: Write phpunit tests for reports shipped by hrreport extension
http://issues.civicrm.org/jira/browse/CRM-13125
* CRM-13012fix:
http://issues.civicrm.org/jira/browse/CRM-13012fix
case 'nnll':
$defaults["{$fieldName}_op"] = $fieldOP;
break;
+ case 'in':
+ case 'notin':
+ $value = self::getTypedValue("{$fieldName}_value", CRM_Utils_Type::T_STRING);
+ if ($value !== NULL) {
+ $defaults["{$fieldName}_value"] = explode(",", $value);
+ $defaults["{$fieldName}_op"] = $fieldOP;
+ }
+ break;
}
}