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:
Tim Hunt
2012-07-02 16:44:29 +08:00
committed by Dan Poltawski
parent dabab94b6e
commit 592443f4e1
+13 -4
View File
@@ -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",