fix wrong colum "notification_created" has to be "notify_created"

This commit is contained in:
ralf 2023-09-25 11:29:56 +02:00
parent 0a06361625
commit f90f1dea48

View File

@ -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);
}