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-03-21 08:56:37 +0400
committermattab <matthieu.aubry@gmail.com>2014-03-21 08:56:37 +0400
commit3f77b462bdf3906dd3ee809cd90d3034daf64fe7 (patch)
tree4a56276d24cc7cb4f56d6bfb941d64129bc58c5c /core/Config.php
parent828d7cf180fc9cfe1fce93ecb68bc72953e777f6 (diff)
Do not fail the console if there is no config.ini.php
Diffstat (limited to 'core/Config.php')
-rw-r--r--core/Config.php1
1 files changed, 1 insertions, 0 deletions
diff --git a/core/Config.php b/core/Config.php
index c97e353e9a..75fc2b3b3c 100644
--- a/core/Config.php
+++ b/core/Config.php
@@ -289,6 +289,7 @@ class Config extends Singleton
$this->configCommon = _parse_ini_file($this->pathCommon, true);
+ // Check config.ini.php last
$this->checkLocalConfigFound();
$this->configLocal = _parse_ini_file($this->pathLocal, true);