Remove old deprecated fn alias
authorColeman Watts <coleman@civicrm.org>
Sun, 9 Feb 2014 21:36:47 +0000 (13:36 -0800)
committerColeman Watts <coleman@civicrm.org>
Mon, 10 Feb 2014 02:33:37 +0000 (18:33 -0800)
api/v3/Contact.php

index 1aac290b2fec6f6d49bdc2075d68cecfdb374468..97a3e26cf945fd88d53e799ed8dc262a37a224a1 100644 (file)
@@ -506,18 +506,13 @@ function _civicrm_api3_greeting_format_params($params) {
 }
 
 /**
- * Contact quick search api
+ * Old contact quick search api
  *
- * @access public
+ * @deprecated
  *
  * {@example ContactGetquick.php 0}
  *
  */
-function civicrm_api3_contact_quicksearch($params) {
-  // kept as an alias for compatibility reasons.  CRM-11136
-  return civicrm_api3_contact_getquick($params);
-}
-
 function civicrm_api3_contact_getquick($params) {
   civicrm_api3_verify_mandatory($params, NULL, array('name'));
   $name = CRM_Utils_Type::escape(CRM_Utils_Array::value('name', $params), 'String');