From 8533b3eb5086bfa6a8800a603520500a0143b489 Mon Sep 17 00:00:00 2001 From: Jan-Hendrik Willms <tleilax+studip@gmail.com> Date: Thu, 2 Mar 2023 13:25:44 +0000 Subject: [PATCH] preserve global user switch in cronjob, fixes #2242 Closes #2242 Merge request studip/studip!1475 --- lib/cronjobs/send_mail_notifications.class.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/lib/cronjobs/send_mail_notifications.class.php b/lib/cronjobs/send_mail_notifications.class.php index 9529d0bc8d9..c336308194e 100644 --- a/lib/cronjobs/send_mail_notifications.class.php +++ b/lib/cronjobs/send_mail_notifications.class.php @@ -94,6 +94,8 @@ class SendMailNotificationsJob extends CronJob */ public function execute($last_result, $parameters = []) { + $cli_user = $GLOBALS['user']; + $notification = new ModulesNotification(); $query = "SELECT DISTINCT user_id @@ -112,6 +114,8 @@ class SendMailNotificationsJob extends CronJob return; } + $GLOBALS['user'] = new Seminar_user($user); + $ok = false; $mailmessage = $notification->getAllNotifications($user->id); @@ -135,5 +139,7 @@ class SendMailNotificationsJob extends CronJob } } ); + + $GLOBALS['user'] = $cli_user; } } -- GitLab