From: eileen Date: Wed, 6 Mar 2013 08:39:52 +0000 (+1300) Subject: extra fields to ignore from API, NB I can't recall why I made this a hard fail rather... X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=f704dce7f6dd076efb6fc844cefc498d6141ca79;p=civicrm-core.git extra fields to ignore from API, NB I can't recall why I made this a hard fail rather than a soft ignore --- diff --git a/CRM/Core/BAO/Setting.php b/CRM/Core/BAO/Setting.php index 11218e636c..4ba094ea55 100644 --- a/CRM/Core/BAO/Setting.php +++ b/CRM/Core/BAO/Setting.php @@ -402,6 +402,9 @@ class CRM_Core_BAO_Setting extends CRM_Core_DAO_Setting { 'entity_table', 'sequential', 'api.has_parent', + 'IDS_request_uri', + 'IDS_user_agent', + 'check_permissions', ); $settingParams = array_diff_key($params, array_fill_keys($ignoredParams, TRUE)); $getFieldsParams = array('version' => 3);