Skip to content

Commit

Permalink
Fixed issue #17285: "Resume later" not working after "Load unfinished…
Browse files Browse the repository at this point in the history
… survey" (#1988)

Fixed issue #17285: "Resume later" not working after "Load unfinished survey"
  • Loading branch information
gabrieljenik committed Aug 6, 2021
1 parent 6ec8dc5 commit e6e3fdb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/expressions/em_manager_helper.php
Expand Up @@ -5648,7 +5648,7 @@ private function _UpdateValuesInDatabase($finished=false)
}
elseif ($this->surveyOptions['allowsave'] && isset($_SESSION[$this->sessid]['scid']))
{
SavedControl::model()->updateByPk($_SESSION[$this->sessid]['scid'], array('saved_thisstep'=>$thisstep));
SavedControl::model()->updateByPk($_SESSION[$this->sessid]['scid'], array('saved_thisstep'=>$_SESSION[$this->sessid]['step']));
}
// Check Quotas
$aQuotas = checkCompletedQuota($this->sid,true);
Expand Down

0 comments on commit e6e3fdb

Please sign in to comment.