From 106a7a3a03302167e05c923bac932868dd18bce6 Mon Sep 17 00:00:00 2001 From: Coleman Watts Date: Wed, 5 Feb 2014 10:22:39 -0800 Subject: [PATCH] Test fixes --- api/v3/Entity.php | 4 ++-- api/v3/Location.php | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/api/v3/Entity.php b/api/v3/Entity.php index d727fc5875..3a38c7961a 100644 --- a/api/v3/Entity.php +++ b/api/v3/Entity.php @@ -46,14 +46,14 @@ function civicrm_api3_entity_get($params) { * Placeholder function. This should never be called, as it doesn't have any meaning */ function civicrm_api3_entity_create($params) { - return civicrm_api3_create_error("API (Entity,Create) does not exist Creating a new entity means modifying the source code of civiCRM."); + return civicrm_api3_create_error("API (Entity, Create) does not exist Creating a new entity means modifying the source code of civiCRM."); } /** * Placeholder function. This should never be called, as it doesn't have any meaning */ function civicrm_api3_entity_delete($params) { - return civicrm_api3_create_error("API (Entity,Delete) does not exist Deleting an entity means modifying the source code of civiCRM."); + return civicrm_api3_create_error("API (Entity, Delete) does not exist Deleting an entity means modifying the source code of civiCRM."); } /** diff --git a/api/v3/Location.php b/api/v3/Location.php index 739eaa3b89..d9a22ad8ba 100644 --- a/api/v3/Location.php +++ b/api/v3/Location.php @@ -6,14 +6,14 @@ require_once 'api/v3/utils.php'; * Functions to inform caller that Location is obsolete and Address, Phone, Email, Website should be used */ function civicrm_api3_location_create($params) { - return civicrm_api3_create_error("API (Location,Create) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE)); + return civicrm_api3_create_error("API (Location, Create) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE)); } function civicrm_api3_location_get($params) { - return civicrm_api3_create_error("API (Location,Get) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE)); + return civicrm_api3_create_error("API (Location, Get) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE)); } function civicrm_api3_location_delete($params) { - return civicrm_api3_create_error("API (Location,Delete) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE)); + return civicrm_api3_create_error("API (Location, Delete) does not exist, use the Address/Phone/Email/Website API instead", array('obsoleted' => TRUE)); } -- 2.25.1