From 308895ca9bd52a7e8774b0a7551b4677d84cd981 Mon Sep 17 00:00:00 2001 From: mikerogerz Date: Wed, 7 Sep 2011 17:11:26 -0700 Subject: [PATCH] Variable isn't reset for next loop. Causes issues with multiple branches. --- controllers/components/wizard.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/controllers/components/wizard.php b/controllers/components/wizard.php index 79be0a2..df1f7db 100755 --- a/controllers/components/wizard.php +++ b/controllers/components/wizard.php @@ -473,6 +473,8 @@ function _parseSteps($steps) { $parsed[] = $name[$branch]; } } + + unset($branch); } else { $parsed[] = $name; }