MDL-79718 mod_quiz: Remove unnecessary semicolon in SQL statement

This commit is contained in:
Jun Pataleta 2024-06-24 17:12:47 +08:00
parent cfb2cce128
commit 5e976886c7
No known key found for this signature in database
GPG Key ID: F83510526D99E2C7

View File

@ -48,7 +48,7 @@ class notification_helper {
JOIN {modules} m ON cm.module = m.id AND m.name = :modulename
LEFT JOIN {quiz_overrides} qo ON q.id = qo.quiz
WHERE (q.timeopen < :futuretime OR qo.timeopen < :qo_futuretime)
AND (q.timeopen > :timenow OR qo.timeopen > :qo_timenow);";
AND (q.timeopen > :timenow OR qo.timeopen > :qo_timenow)";
$params = [
'timenow' => $timenow,