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>2013-10-02 09:31:40 +0400
committermattab <matthieu.aubry@gmail.com>2013-10-02 09:31:40 +0400
commit1bd59324ff7423d430cab9d3670272a4ae82f637 (patch)
tree9a50e63d02449779a6a9baa8bad0279e91574185 /index.php
parent91422f37aec49033324b0043b6c81c454753cdc4 (diff)
Fix skipped test
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/index.php b/index.php
index 0369da7a7f..d464377c56 100644
--- a/index.php
+++ b/index.php
@@ -40,7 +40,9 @@ require_once PIWIK_INCLUDE_PATH . '/vendor/autoload.php';
require_once PIWIK_INCLUDE_PATH . '/core/Loader.php';
require_once PIWIK_INCLUDE_PATH . '/core/functions.php';
-define('PIWIK_PRINT_ERROR_BACKTRACE', false);
+if(!defined('PIWIK_PRINT_ERROR_BACKTRACE')) {
+ define('PIWIK_PRINT_ERROR_BACKTRACE', false);
+}
if (!defined('PIWIK_ENABLE_ERROR_HANDLER') || PIWIK_ENABLE_ERROR_HANDLER) {
require_once PIWIK_INCLUDE_PATH . '/core/Error.php';