Skip to content

Commit

Permalink
Catalogue: Fix missing space in SQL query - refs #4723
Browse files Browse the repository at this point in the history
  • Loading branch information
ywarnier committed Jun 6, 2023
1 parent 38e080f commit 30e9d28
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugin/resubscription/src/HookResubscription.php
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public function hookResubscribe(HookResubscribeEventInterface $hook)
$limitDate = gmdate($limitDateFormat, strtotime("$limitDate -$resubscriptionOffset"));
}

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

// User sessions and courses
$userSessions = Database::select(
Expand Down

0 comments on commit 30e9d28

Please sign in to comment.