From f90f1dea480a513dca5c5b7b04422ddaec5af665 Mon Sep 17 00:00:00 2001 From: ralf Date: Mon, 25 Sep 2023 11:29:56 +0200 Subject: [PATCH] fix wrong colum "notification_created" has to be "notify_created" --- notifications/inc/class.notifications_ajax.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notifications/inc/class.notifications_ajax.inc.php b/notifications/inc/class.notifications_ajax.inc.php index 758da29b0b..c0c65575db 100644 --- a/notifications/inc/class.notifications_ajax.inc.php +++ b/notifications/inc/class.notifications_ajax.inc.php @@ -233,7 +233,7 @@ class notifications_ajax // cleanup messages older than our cut-off-date $this->db->delete(self::_notification_table, [ - 'notification_created <= '.$cut_off, + 'notify_created <= '.$cut_off, 'notify_type' => self::_type ], __LINE__, __FILE__, self::_appname); }