Skip to content

Commit 30e9d28

Browse files
committed
Catalogue: Fix missing space in SQL query - refs #4723
1 parent 38e080f commit 30e9d28

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugin/resubscription/src/HookResubscription.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ public function hookResubscribe(HookResubscribeEventInterface $hook)
4545
$limitDate = gmdate($limitDateFormat, strtotime("$limitDate -$resubscriptionOffset"));
4646
}
4747

48-
$join = " INNER JOIN ".Database::get_main_table(TABLE_MAIN_SESSION)."ON id = session_id";
48+
$join = " INNER JOIN ".Database::get_main_table(TABLE_MAIN_SESSION)." ON id = session_id";
4949

5050
// User sessions and courses
5151
$userSessions = Database::select(

0 commit comments

Comments
 (0)