api tidy-up add missing spaces
authorEileen <eileen@fuzion.co.nz>
Thu, 23 Jan 2014 16:00:57 +0000 (16:00 +0000)
committerEileen McNaughton <eileen@fuzion.co.nz>
Tue, 28 Jan 2014 00:20:08 +0000 (13:20 +1300)
api/api.php
api/v3/utils.php

index b91940a033195091484eaec6fab308c75817cd6e..959b7994f1f3d3e78eb684f82c8b186d4b0ffa5b 100644 (file)
@@ -87,7 +87,7 @@ function civicrm_api($entity, $action, $params, $extra = NULL) {
       $result = isset($extra) ? $function($apiRequest['params'], $extra) : $function($apiRequest['params']);
     }
     else {
-      return civicrm_api3_create_error("API (" . $apiRequest['entity'] . "," . $apiRequest['action'] . ") does not exist (join the API team and implement it!)");
+      return civicrm_api3_create_error("API (" . $apiRequest['entity'] . ", " . $apiRequest['action'] . ") does not exist (join the API team and implement it!)");
     }
 
     // For output filtering, process $apiWrappers in reverse order
index f810fcbf42505af0f47c9e5b031f98fe701b0ada..d5b54dd75a10665207da6bc806117f4abc2c9752 100644 (file)
@@ -965,7 +965,7 @@ function _civicrm_api3_api_check_permission($entity, $action, &$params, $throw =
  */
 function _civicrm_api3_basic_get($bao_name, &$params, $returnAsSuccess = TRUE, $entity = "") {
   $bao = new $bao_name();
-  _civicrm_api3_dao_set_filter($bao, $params, TRUE,$entity);
+  _civicrm_api3_dao_set_filter($bao, $params, TRUE, $entity);
   if ($returnAsSuccess) {
       return civicrm_api3_create_success(_civicrm_api3_dao_to_array($bao, $params, FALSE, $entity), $params, $entity);
   }