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:
authormatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-08-22 22:14:37 +0400
committermatthieu_ <matthieu_@59fd770c-687e-43c8-a1e3-f5a4ff64c105>2007-08-22 22:14:37 +0400
commitc0a8e54d4c257a85b8479d7c45fab0a121b95e8c (patch)
tree558c23cf9b11172643773ddbe51cc7a32af5a315 /modules/ErrorHandler.php
parent7765dfe0c8e71eabaa079b3d94eaf800bda88390 (diff)
-wrote some renderers: php, xml
-wrote the API request class to handle the GET request to get data from the API provided by the plugins -organized the files into new directories
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 79b6acd578..cb746380e6 100755
--- a/modules/ErrorHandler.php
+++ b/modules/ErrorHandler.php
@@ -1,10 +1,10 @@
<?php
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);
}
?>