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 <benakamoorthi@fastmail.fm>2014-03-24 11:39:34 +0400
committerdiosmosis <benakamoorthi@fastmail.fm>2014-03-24 11:39:34 +0400
commitdba4664cd738096603583eb912d604b23f09c345 (patch)
treebf4cc497d36e1c4acaca0be9839ec58ba0fe47ac /core/Config.php
parentd2aa1f6c2432caec356afe5737c9518774e7de46 (diff)
Fixing build by reverting older commit.
Diffstat (limited to 'core/Config.php')
-rw-r--r--core/Config.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Config.php b/core/Config.php
index 8e4cad8359..44af08de23 100644
--- a/core/Config.php
+++ b/core/Config.php
@@ -116,9 +116,9 @@ class Config extends Singleton
$this->clear();
- $this->pathLocal = $pathLocal ?: $this->pathLocal;
- $this->pathGlobal = $pathGlobal ?: $this->pathGlobal;
- $this->pathCommon = $pathCommon ?: $this->pathCommon;
+ $this->pathLocal = $pathLocal ?: Config::getLocalConfigPath();
+ $this->pathGlobal = $pathGlobal ?: Config::getGlobalConfigPath();
+ $this->pathCommon = $pathCommon ?: Config::getCommonConfigPath();
$this->init();