From d975e750c80cf9f2b3623cba4ac1d966f0c237f5 Mon Sep 17 00:00:00 2001 From: Andre Schuurman Date: Thu, 3 Dec 2015 14:48:54 +0100 Subject: [PATCH] Fix completed step marked active when last step called directly. --- WizardWidget.php | 1 + 1 file changed, 1 insertion(+) diff --git a/WizardWidget.php b/WizardWidget.php index 5fc5c19..a241789 100644 --- a/WizardWidget.php +++ b/WizardWidget.php @@ -115,6 +115,7 @@ public function run() { // Add a completed step if defined if ($this->complete_content) { // Check if completed tab is set as start_step + $class = 'disabled'; if ($this->start_step == 'completed') { $class = 'active'; }