Skip to content

Commit

Permalink
Dev: Missing this->
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Apr 26, 2017
1 parent 56b2e57 commit b512e91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/SurveyRuntimeHelper.php
Expand Up @@ -984,7 +984,7 @@ private function checkIfFinished()
if (isset($moveResult) && isset($moveResult['seq']) ){
// With complete index, we need to revalidate whole group bug #08806. It's actually the only mode where we JumpTo with force
// we already done if move == 'movesubmit', don't do it again
if($moveResult['finished'] == true && $move != 'movesubmit' && $thissurvey['questionindex']==2){
if($moveResult['finished'] == true && $move != 'movesubmit' && $this->thissurvey['questionindex']==2){
//LimeExpressionManager::JumpTo(-1, false, false, true);
LimeExpressionManager::StartSurvey($surveyid, $surveyMode, $surveyOptions);
$moveResult = $this->moveResult = LimeExpressionManager::JumpTo($_SESSION[$LEMsessid]['totalsteps']+1, false, false, false);// no preview, no save data and NO force
Expand Down

0 comments on commit b512e91

Please sign in to comment.