Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormattab <matthieu.aubry@gmail.com>2014-06-10 08:05:39 +0400
committermattab <matthieu.aubry@gmail.com>2014-06-10 08:05:39 +0400
commit32e2342a79d66ce3250b7379e3e9c4c2a4f2a6e7 (patch)
treeaa5fa45447f6a9f2c5a2ab47d1432dc23863caef /core/Config.php
parent3a28d26de32257045850ea5a602b970a9b5be3f7 (diff)
Enable DevicesDetection plugin by default starting in 2.4.0-b6 refs #5329
Diffstat (limited to 'core/Config.php')
-rw-r--r--core/Config.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/core/Config.php b/core/Config.php
index 6c80734258..1f91d554f0 100644
--- a/core/Config.php
+++ b/core/Config.php
@@ -148,16 +148,6 @@ class Config extends Singleton
// for unit tests, we set that no plugin is installed. This will force
// the test initialization to create the plugins tables, execute ALTER queries, etc.
$this->configCache['PluginsInstalled'] = array('PluginsInstalled' => array());
-
- // DevicesDetection plugin is not yet enabled by default
- if (isset($configGlobal['Plugins'])) {
- $this->configCache['Plugins'] = $this->configGlobal['Plugins'];
- $this->configCache['Plugins']['Plugins'][] = 'DevicesDetection';
- }
- if (isset($configGlobal['Plugins_Tracker'])) {
- $this->configCache['Plugins_Tracker'] = $this->configGlobal['Plugins_Tracker'];
- $this->configCache['Plugins_Tracker']['Plugins_Tracker'][] = 'DevicesDetection';
- }
}
/**