From: Tim Otten Date: Wed, 13 Nov 2019 05:54:54 +0000 (-0800) Subject: (dev/core#1387) Remove some lingering references to config_backend X-Git-Url: https://vcs.fsf.org/?a=commitdiff_plain;h=502b674770d277f33efc2eb3d15bba04351bb835;p=civicrm-core.git (dev/core#1387) Remove some lingering references to config_backend --- diff --git a/CRM/Core/Config.php b/CRM/Core/Config.php index fdffa814a6..4025c5d5ac 100644 --- a/CRM/Core/Config.php +++ b/CRM/Core/Config.php @@ -196,10 +196,13 @@ class CRM_Core_Config extends CRM_Core_Config_MagicMerge { /** * Reset the serialized array and recompute. * use with care + * + * @deprecated */ public function reset() { - $query = "UPDATE civicrm_domain SET config_backend = null"; - CRM_Core_DAO::executeQuery($query); + // This is what it used to do. However, it hasn't meant anything since 4.6. + // $query = "UPDATE civicrm_domain SET config_backend = null"; + // CRM_Core_DAO::executeQuery($query); } /** diff --git a/api/v3/examples/Domain/Create.ex.php b/api/v3/examples/Domain/Create.ex.php index 85b9fb6dbe..70280cf0b4 100644 --- a/api/v3/examples/Domain/Create.ex.php +++ b/api/v3/examples/Domain/Create.ex.php @@ -50,7 +50,6 @@ function domain_create_expectedresult() { 'id' => '3', 'name' => 'A-team domain', 'description' => 'domain of chaos', - 'config_backend' => '', 'contact_id' => '7', 'locales' => '', 'locale_custom_strings' => '',