From 882e0216e73502baf975cb7e8e42d1ea1888432c Mon Sep 17 00:00:00 2001 From: eileen Date: Fri, 28 Jun 2013 22:42:39 +1200 Subject: [PATCH] e-notice fix --- api/v3/CustomGroup.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api/v3/CustomGroup.php b/api/v3/CustomGroup.php index e5c06c3d00..3290b3a4fb 100644 --- a/api/v3/CustomGroup.php +++ b/api/v3/CustomGroup.php @@ -63,7 +63,7 @@ * @access public */ function civicrm_api3_custom_group_create($params) { - if (is_string($params['extends'])) { + if (isset($params['extends']) && is_string($params['extends'])) { $extends = explode(",", $params['extends']); unset($params['extends']); $params['extends'] = $extends; -- 2.25.1