Skip to content
Snippets Groups Projects
Commit 88f70264 authored by Dave Greenberg's avatar Dave Greenberg
Browse files

Merge pull request #1297 from eileenmcnaughton/4.3

CRM-13016 wrong version of this fn in 4.3
parents 979b4a1e d661281d
No related branches found
No related tags found
No related merge requests found
......@@ -247,12 +247,13 @@ function _civicrm_api_resolve($apiRequest) {
* @return array
*
*/
function civicrm_api3($entity, $action, $params){
function civicrm_api3($entity, $action, $params) {
$params['version'] = 3;
$result = civicrm_api($entity, $action, $params);
if($result['is_error']){
if(is_array($result) && !empty($result['is_error'])){
throw new CiviCRM_API3_Exception($result['error_message'], CRM_Utils_Array::value('error_code', $result, 'undefined'), $result);
}
return $result;
}
/**
......
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