MDL-34109 quiz cron: change whitespace before applying the fix.
This commit just changes the white-space, but does not change any of the actual code. This is so that the commit I am about to make, which will change the code, will be easier to understand.
This commit is contained in:
+13
-4
@@ -125,10 +125,19 @@ class mod_quiz_overdue_attempt_updater {
|
||||
) group_by_results
|
||||
JOIN {quiz_attempts} quiza ON quiza.id = group_by_results.attemptid
|
||||
|
||||
WHERE (state = 'inprogress' AND (:timenow1 > usertimeclose OR
|
||||
:timenow2 > quiza.timestart + usertimelimit))
|
||||
OR (state = 'overdue' AND (:timenow3 > graceperiod + usertimeclose OR
|
||||
:timenow4 > graceperiod + quiza.timestart + usertimelimit))
|
||||
WHERE (
|
||||
state = 'inprogress' AND (
|
||||
:timenow1 > usertimeclose OR
|
||||
:timenow2 > quiza.timestart + usertimelimit
|
||||
)
|
||||
)
|
||||
OR
|
||||
(
|
||||
state = 'overdue' AND (
|
||||
:timenow3 > graceperiod + usertimeclose OR
|
||||
:timenow4 > graceperiod + quiza.timestart + usertimelimit
|
||||
)
|
||||
)
|
||||
|
||||
ORDER BY course, quiz",
|
||||
|
||||
|
||||
Reference in New Issue
Block a user