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/View.php')
-rw-r--r--plugins/Installation/View.php5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/Installation/View.php b/plugins/Installation/View.php
index 0b5e288890..7f3ae3c197 100644
--- a/plugins/Installation/View.php
+++ b/plugins/Installation/View.php
@@ -48,6 +48,11 @@ class Piwik_Installation_View extends Piwik_View
{
$this->previousModuleName = $this->steps[$this->currentStepId - 1];
}
+ $this->previousPreviousModuleName = '';
+ if(isset($this->steps[$this->currentStepId - 2]))
+ {
+ $this->previousPreviousModuleName = $this->steps[$this->currentStepId - 2];
+ }
return parent::render();
}