mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 17:06:53 +02:00
Teachers now can preview timelimited quizzes even after the closing date
This commit is contained in:
parent
0cdae0dcaa
commit
2e8973e779
1 changed files with 4 additions and 0 deletions
|
@ -538,6 +538,10 @@
|
||||||
|
|
||||||
|
|
||||||
$secondsleft = ($quiz->timeclose ? $quiz->timeclose : 999999999999) - time();
|
$secondsleft = ($quiz->timeclose ? $quiz->timeclose : 999999999999) - time();
|
||||||
|
if ($isteacher) {
|
||||||
|
// For teachers ignore the quiz closing time
|
||||||
|
$secondsleft = 999999999999;
|
||||||
|
}
|
||||||
// If time limit is set include floating timer.
|
// If time limit is set include floating timer.
|
||||||
if ($quiz->timelimit > 0) {
|
if ($quiz->timelimit > 0) {
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue