X-Git-Url: https://vcs.fsf.org/?a=blobdiff_plain;f=api%2Fv3%2FLocation.php;h=d9a22ad8ba12f04ae9eff1819cc6d21fc8c008d4;hb=4c95b949e863281d990ffa2a3104415079e6352d;hp=739eaa3b89abb365bb4d00b852d90b305b5089a4;hpb=52df19870805bf5a2bae2388a1f6c5a0309c2d92;p=civicrm-core.git 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)); }