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-07-31 01:13:56 +0400
committermattab <matthieu.aubry@gmail.com>2013-07-31 01:13:56 +0400
commit765be0dc8f92a6d4bb3e678a0c23f2d4b95e0e18 (patch)
tree3a0ae0e7334250446b687667e4d365af6975e0f4 /core/ErrorHandler.php
parent5104d94f3b2250f766b9c520e2da8da9b4cab2e9 (diff)
Refs #3741 Resuming PHP Namespaces conversion of Piwik core, mostly finished core/ conversion
Diffstat (limited to 'core/ErrorHandler.php')
-rw-r--r--core/ErrorHandler.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ErrorHandler.php b/core/ErrorHandler.php
index f2bcde168c..963d46e3f6 100644
--- a/core/ErrorHandler.php
+++ b/core/ErrorHandler.php
@@ -47,7 +47,7 @@ function Piwik_ErrorHandler($errno, $errstr, $errfile, $errline)
}
try {
- Zend_Registry::get('logger_error')->logEvent($errno, $errstr, $errfile, $errline, $backtrace);
+ \Zend_Registry::get('logger_error')->logEvent($errno, $errstr, $errfile, $errline, $backtrace);
} catch (Exception $e) {
// in case the error occurs before the logger creation, we simply display it
print("<pre>$errstr \nin '$errfile' at the line $errline\n\n$backtrace\n</pre>");