projects
/
civicrm-core.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f05193f
)
CRM-13823 Fixing 'id' in System.php
author
Nikki Murray
<nikki.liz.murray@gmail.com>
Thu, 15 Oct 2015 13:35:37 +0000
(09:35 -0400)
committer
Nikki Murray
<nikki.liz.murray@gmail.com>
Thu, 15 Oct 2015 13:35:37 +0000
(09:35 -0400)
api/v3/System.php
patch
|
blob
|
blame
|
history
diff --git
a/api/v3/System.php
b/api/v3/System.php
index 703922d840525d68201a408c8a1f333ec4e5e6ed..21fc343ea4607ec32e4fe4f2c6e2f5890928a36d 100644
(file)
--- 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'));
}
/**