mirror of
https://github.com/moodle/moodle.git
synced 2025-04-21 16:32:18 +02:00
MDL-79718 mod_quiz: Remove unnecessary semicolon in SQL statement
This commit is contained in:
parent
cfb2cce128
commit
5e976886c7
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user