CRM-16806 - Additional cleanup
authorColeman Watts <coleman@civicrm.org>
Tue, 11 Aug 2015 19:12:30 +0000 (15:12 -0400)
committerColeman Watts <coleman@civicrm.org>
Tue, 11 Aug 2015 19:12:30 +0000 (15:12 -0400)
CRM/Admin/Page/APIExplorer.php

index 31d0c048997e22a6747a7e0160dc1d2a984d2837..241f4e4c8ae4f8b542566b834bd96ab5fdfc1087 100644 (file)
@@ -107,8 +107,8 @@ class CRM_Admin_Page_APIExplorer extends CRM_Core_Page {
   public static function getDoc() {
     // Verify the API handler we're talking to is valid.
     $entities = civicrm_api3('Entity', 'get');
-    if (!empty($_GET['entity']) && in_array($_GET['entity'], $entities['values']) && strpos($_GET['entity'], '.') === FALSE) {
-      $entity = _civicrm_api_get_camel_name($_GET['entity']);
+    $entity = CRM_Utils_Array::value('entity', $_GET);
+    if (!empty($entity) && in_array($entity, $entities['values']) && strpos($entity, '.') === FALSE) {
       $action = CRM_Utils_Array::value('action', $_GET);
       $doc = self::getDocblock($entity, $action);
       $result = array(