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:
authorChristian Raue <christian.raue@gmail.com>2014-07-22 12:39:37 +0400
committerChristian Raue <christian.raue@gmail.com>2014-07-23 11:10:41 +0400
commit2788e1dad22533f3e0dbddbdd16c51251c4e130a (patch)
tree2c6d5bd60b41173335eadda2252f488b06b0cef0
parent259db751ace8fc6bcec0a45ef592cd68460c3f04 (diff)
simplified a use statement
-rw-r--r--core/FrontController.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/FrontController.php b/core/FrontController.php
index 59268881f9..4de8eb4379 100644
--- a/core/FrontController.php
+++ b/core/FrontController.php
@@ -16,7 +16,7 @@ use Piwik\Plugin\Controller;
use Piwik\Plugin\Report;
use Piwik\Plugin\Widgets;
use Piwik\Session;
-use \Piwik\Plugins\CoreHome\Controller as CoreHomeController;
+use Piwik\Plugins\CoreHome\Controller as CoreHomeController;
/**
* This singleton dispatches requests to the appropriate plugin Controller.