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-08-28 21:32:26 +0400
committermattpiwik <matthieu.aubry@gmail.com>2007-08-28 21:32:26 +0400
commit5819eda4fff1051164234750a694f9885935b1ca (patch)
tree4bb386162c52e0b6b941db4d61197b29cc72aabf /modules/ErrorHandler.php
parent68b5cb3b902024d66c36c1f106c5f272ac57d7fa (diff)
code documentation
mvc specification finished referer API implementation git-svn-id: http://dev.piwik.org/svn/trunk@50 59fd770c-687e-43c8-a1e3-f5a4ff64c105
Diffstat (limited to 'modules/ErrorHandler.php')
-rwxr-xr-xmodules/ErrorHandler.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/modules/ErrorHandler.php b/modules/ErrorHandler.php
index 7ae1fc9d9d..76a562da8a 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);
switch($errno)
@@ -31,4 +31,4 @@ function Piwik_ErrorHandler($errno, $errstr, $errfile, $errline)
break;
}
}
-?>
+