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
path: root/core
diff options
context:
space:
mode:
authorFabian Becker <fabian.becker@uni-tuebingen.de>2013-09-23 22:07:56 +0400
committerFabian Becker <fabian.becker@uni-tuebingen.de>2013-09-23 22:07:56 +0400
commit1b336b819ba67450053776e3a90848f28e2a7d74 (patch)
tree80f6bb6707a9189922e2878e8a08f1b66722ffc5 /core
parentc2163bfab58b7f9b7abc2f0aec3131b3705b9bd0 (diff)
Fix debugTrace output.
Diffstat (limited to 'core')
-rw-r--r--core/FrontController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/FrontController.php b/core/FrontController.php
index d56991af11..c98c5e5005 100644
--- a/core/FrontController.php
+++ b/core/FrontController.php
@@ -310,7 +310,7 @@ class FrontController
throw $e;
}
- $trace = $e->getTraceAsString();
+ $debugTrace = $e->getTraceAsString();
Piwik_ExitWithMessage($e->getMessage(), $debugTrace, true);
}
}