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:
authormattpiwik <matthieu.aubry@gmail.com>2007-09-11 22:11:07 +0400
committermattpiwik <matthieu.aubry@gmail.com>2007-09-11 22:11:07 +0400
commitb0066f08e6aa4f3b25c3653f6abd982711bedde3 (patch)
treefb6dc26512c545860817bb7f93ae391d8d2af760 /modules/ErrorHandler.php
parent755961c5ed4e082ad9ea58c1ccd4c23d2aa7447e (diff)
Ui, struggling with JS
git-svn-id: http://dev.piwik.org/svn/trunk@72 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'modules/ErrorHandler.php')
-rwxr-xr-xmodules/ErrorHandler.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/modules/ErrorHandler.php b/modules/ErrorHandler.php
index e541cb2a28..5887e071ff 100755
--- a/modules/ErrorHandler.php
+++ b/modules/ErrorHandler.php
@@ -5,10 +5,10 @@
*/
function Piwik_ErrorHandler($errno, $errstr, $errfile, $errline)
{
-// ob_start();
-// debug_print_backtrace();
-// $backtrace = ob_get_contents();
-// ob_end_clean();
+ ob_start();
+ debug_print_backtrace();
+ $backtrace = ob_get_contents();
+ ob_end_clean();
Zend_Registry::get('logger_error')->log($errno, $errstr, $errfile, $errline, $backtrace);
switch($errno)