From dba4664cd738096603583eb912d604b23f09c345 Mon Sep 17 00:00:00 2001 From: diosmosis <benakamoorthi@fastmail.fm> Date: Mon, 24 Mar 2014 07:39:34 +0000 Subject: [PATCH] Fixing build by reverting older commit. --- core/Config.php | 6 +++--- 1 file 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(); -- GitLab