From: eileen Date: Fri, 28 Jun 2013 10:42:39 +0000 (+1200) Subject: e-notice fix X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=882e0216e73502baf975cb7e8e42d1ea1888432c;p=civicrm-core.git e-notice fix --- 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;