From c852cd8e091dc5e8fd39d11278b8419a34e50b76 Mon Sep 17 00:00:00 2001 From: Denis Flaven Date: Fri, 4 Sep 2015 13:31:25 +0000 Subject: [PATCH] Regression due to the fix of #1107 (revision 3647): the settings query_cache_enabled was always written as "false" in the default configuration. This is now fixed. Warning: if you upgrade your iTop installation from the 2.2 beta, you MUST change this value back to true in the configuration file to avoid a severe slow down of the application. SVN:trunk[3719] --- core/config.class.inc.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/core/config.class.inc.php b/core/config.class.inc.php index 11c560e22..b75cac5ec 100644 --- a/core/config.class.inc.php +++ b/core/config.class.inc.php @@ -1038,6 +1038,8 @@ class Config $this->m_sExtAuthVariable = DEFAULT_EXT_AUTH_VARIABLE; $this->m_sEncryptionKey = DEFAULT_ENCRYPTION_KEY; $this->m_aCharsets = array(); + $this->m_bLogQueries = DEFAULT_LOG_QUERIES; + $this->m_bQueryCacheEnabled = DEFAULT_QUERY_CACHE_ENABLED; $this->m_aModuleSettings = array();