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 'plugins/Installation/Controller.php')
-rw-r--r--plugins/Installation/Controller.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/Installation/Controller.php b/plugins/Installation/Controller.php
index aa3052e6b5..d0207e1ffa 100644
--- a/plugins/Installation/Controller.php
+++ b/plugins/Installation/Controller.php
@@ -17,6 +17,7 @@ use Piwik\Config;
use Piwik\Common;
use Piwik\Access;
use Piwik\Http;
+use Piwik\Session\SessionNamespace;
use Piwik\Updater;
use Piwik\View;
use Piwik\Version;
@@ -48,7 +49,7 @@ class Piwik_Installation_Controller extends Admin
public function __construct()
{
- $this->session = new Piwik_Session_Namespace('Piwik_Installation');
+ $this->session = new SessionNamespace('Piwik_Installation');
if (!isset($this->session->currentStepDone)) {
$this->session->currentStepDone = '';
$this->session->skipThisStep = array();