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:
authordiosmosis <benaka@piwik.pro>2015-04-04 04:29:09 +0300
committerdiosmosis <benaka@piwik.pro>2015-04-04 04:29:09 +0300
commit80f0bca52b3fb2db4f5a256478785d8e4dba42e0 (patch)
treea8583a1173b43b8034a4af203a41ec425fbff8ff /core/Config.php
parent633d1adeec3d0f2d3faaede7334bdc0d2c53897a (diff)
Fixing UI test issue w/o failing pro plugin builds.
Diffstat (limited to 'core/Config.php')
-rw-r--r--core/Config.php5
1 files changed, 2 insertions, 3 deletions
diff --git a/core/Config.php b/core/Config.php
index 2245ba7a73..c8ef819089 100644
--- a/core/Config.php
+++ b/core/Config.php
@@ -150,8 +150,7 @@ class Config extends Singleton
protected function postConfigTestEvent()
{
- $allSettings =& $this->settings->getAll();
- Piwik::postTestEvent('Config.createConfigSingleton', array($this, &$allSettings));
+ Piwik::postTestEvent('Config.createConfigSingleton', array($this->settings, $this) );
}
/**
@@ -329,7 +328,7 @@ class Config extends Singleton
*/
public function reload()
{
- $this->initialized = true;
+ $this->initialized = false;
$inTrackerRequest = SettingsServer::isTrackerApiRequest();