From c228065190a9aad76dbff1f0bf6e2f638ab5462d Mon Sep 17 00:00:00 2001 From: kurund Date: Wed, 21 Aug 2013 23:07:18 +0530 Subject: [PATCH] fixes for CRM-13259 ---------------------------------------- * CRM-13259: Include gender fields in Contact get spec http://issues.civicrm.org/jira/browse/CRM-13259 --- api/v3/Contact.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/api/v3/Contact.php b/api/v3/Contact.php index a96ba078e7..66fabe4588 100644 --- a/api/v3/Contact.php +++ b/api/v3/Contact.php @@ -192,6 +192,8 @@ function _civicrm_api3_contact_get_spec(&$params) { $params['provider_id']['title'] = 'Primary Phone Provider ID'; $params['email_id']['title'] = 'Primary Email ID'; $params['email']['title'] = 'Primary Email'; + $params['gender_id']['title'] = 'Gender ID'; + $params['gender']['title'] = 'Gender'; $params['on_hold']['title'] = 'Primary Email On Hold'; $params['im']['title'] = 'Primary Instant Messanger'; $params['im_id']['title'] = 'Primary Instant Messanger ID'; -- 2.25.1