From 4e04b0a06a57874dbab55155b2bed6c9068a14e8 Mon Sep 17 00:00:00 2001 From: Nikki Murray Date: Thu, 15 Oct 2015 09:35:37 -0400 Subject: [PATCH] CRM-13823 Fixing 'id' in System.php --- api/v3/System.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v3/System.php b/api/v3/System.php index 703922d840..21fc343ea4 100644 --- a/api/v3/System.php +++ b/api/v3/System.php @@ -113,7 +113,7 @@ function civicrm_api3_system_check($params) { $returnValues[] = $msg->toArray() + array('id' => $id++); } - return _civicrm_api3_basic_array_get('systemCheck', $params, $returnValues, $id, array('id', 'name', 'message', 'title', 'severity', 'is_visible')); + return _civicrm_api3_basic_array_get('systemCheck', $params, $returnValues, "id", array('id', 'name', 'message', 'title', 'severity', 'is_visible')); } /** -- 2.25.1