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:
authorFabian Becker <fabian.becker@uni-tuebingen.de>2013-09-29 19:17:06 +0400
committerFabian Becker <fabian.becker@uni-tuebingen.de>2013-09-29 19:17:06 +0400
commit7d91192397f3bd1f889dfdd3b3b4554f8452372e (patch)
treec09e2dfb8c328982d6eb825036ba0b7bf7b3e58b /core/Log.php
parent05f76a5826e710929ebc558e846847056222e4fb (diff)
Removing all uses of Zend_Registry from core/ plugins/ and tests/
Diffstat (limited to 'core/Log.php')
-rw-r--r--core/Log.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/core/Log.php b/core/Log.php
index bb2b624ee3..fe1cc9e8f7 100644
--- a/core/Log.php
+++ b/core/Log.php
@@ -14,6 +14,7 @@ use Piwik\Log\APICall;
use Piwik\Log\Error;
use Piwik\Log\Exception;
use Piwik\Log\Message;
+use Piwik\Registry;
/**
*
@@ -197,7 +198,7 @@ abstract class Log extends \Zend_Log
if ($logger->getWritersCount() == 0) {
$logger->addWriteToNull();
}
- \Zend_Registry::set($loggerType, $logger);
+ Registry::set($loggerType, $logger);
}
}