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:
Diffstat (limited to 'core/Log.php')
-rw-r--r--core/Log.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/Log.php b/core/Log.php
index 6f0dee2047..2228ec9dae 100644
--- a/core/Log.php
+++ b/core/Log.php
@@ -8,8 +8,8 @@
* @category Piwik
* @package Piwik
*/
-use Piwik\Core\Config;
-use Piwik\Core\Common;
+use Piwik\Config;
+use Piwik\Common;
/**
*
@@ -176,7 +176,7 @@ class Piwik_Log_Formatter_ScreenFormatter implements Zend_Log_Formatter_Interfac
function formatEvent($event)
{
// no injection in error messages, backtrace when displayed on screen
- return array_map(array('Piwik\Core\Common', 'sanitizeInputValue'), $event);
+ return array_map(array('Piwik\Common', 'sanitizeInputValue'), $event);
}
function format($string)