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:
authorThomas Steur <thomas.steur@googlemail.com>2014-07-07 09:21:08 +0400
committerThomas Steur <thomas.steur@googlemail.com>2014-07-07 09:21:08 +0400
commit715cff5e3e0affc9c250eaacbcd5bc05308f4bc0 (patch)
treeb892b324783fcb4b42573f603126f8a984caefa6 /plugins/Installation
parent02edae23dcd9078d9560575373379740fd095ff6 (diff)
this should make the documentation generator work again... it was not allowed to define view here as a class View already exists in that namespace
Diffstat (limited to 'plugins/Installation')
-rw-r--r--plugins/Installation/Installation.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/Installation/Installation.php b/plugins/Installation/Installation.php
index 1c13d6b699..efbf904212 100644
--- a/plugins/Installation/Installation.php
+++ b/plugins/Installation/Installation.php
@@ -14,7 +14,7 @@ use Piwik\FrontController;
use Piwik\Menu\MenuAbstract;
use Piwik\Piwik;
use Piwik\Translate;
-use Piwik\View;
+use Piwik\View as PiwikView;
/**
*
@@ -40,7 +40,7 @@ class Installation extends \Piwik\Plugin
public function displayDbConnectionMessage($exception = null)
{
- $view = new View("@Installation/cannotConnectToDb");
+ $view = new PiwikView("@Installation/cannotConnectToDb");
$view->exceptionMessage = $exception->getMessage();
Piwik_ExitWithMessage($view->render());