Details
-
Type:
Sub-task
-
Status:
Open
-
Priority:
Minor
-
Resolution: Unresolved
-
Affects Version/s: 2.0
-
Fix Version/s: None
-
Component/s: Quiz
-
Labels:None
-
Affected Branches:MOODLE_20_STABLE
Description
On submit all and finish, initialise
$SESSION->quizattemptjustfinished[$attemtp->id] = array('key' => random_string(10), 'time' => time());
and add
?key=$SESSION->quizattemptjustfinished[$attemtp->id]['key'];
to the URL of the review page. That marks that this is a review 'immediately after the attempt'. On each hit of the review page, update the 'time'.
Then on 'Finish review', delete that entry from quizattemptjustfinished.
When validating the key, if too much time has passed since the last recorded 'time', delete this entry from quizattemptjustfinished - that is necessary for when people just close the browser window.
Issue Links
| This issue has been marked as being related by: | ||||
| MDL-18396 | Inconsistence in review options handling on reviewing previews |
|
|
|
Idea from Oleg, on the review page, send a small ajax request every minute to keep the review alive. That is what the OU wiki does with the editing lock, I think. Seems like a good idea to me.