Skip to content

Commit

Permalink
Fixed issue #9462: Regular expressions for validating fields don't va…
Browse files Browse the repository at this point in the history
…lidate if survey skips welcome screen
  • Loading branch information
c-schmitz committed Jan 28, 2015
1 parent 970d07e commit 27dd87f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/SurveyRuntimeHelper.php
Expand Up @@ -268,7 +268,7 @@ function run($surveyid,$args) {
}
elseif (isset($thissurvey['showwelcome']) && $thissurvey['showwelcome'] == 'N')
{
LimeExpressionManager::JumpTo(1, false, false, true);
$moveResult=LimeExpressionManager::JumpTo(1, false, false, true);
$_SESSION[$LEMsessid]['step']=1;
}
}
Expand Down

1 comment on commit 27dd87f

@granttrudel
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The above will not fix the problem reported (I tested it). Publishing the survey and then testing it proves that the above change does not fix it. To properly fix it, you must go down further into the code and make changes as documented in the notes for this bug.

Please sign in to comment.