Merge pull request #1193 from annando/no-enotify

Replace calls to "notification" with the new function
This commit is contained in:
Hypolite Petovan 2021-10-19 22:22:50 -04:00 committed by GitHub
commit fd078ee0e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -54,7 +54,7 @@ function public_server_cron($a, $b)
$users = DBA::selectToArray('user', [], ["`account_expires_on` < UTC_TIMESTAMP() + INTERVAL ? DAY AND
`account_expires_on` > ? AND `expire_notification_sent` <= ?", 5, DBA::NULL_DATETIME, DBA::NULL_DATETIME]);
foreach ($users as $rr) {
notification([
DI::notify()->createFromArray([
'type' => Notification\Type::SYSTEM,
'uid' => $rr['uid'],
'system_type' => 'public_server_expire',

View File

@ -51,7 +51,7 @@ function testdrive_cron($a,$b) {
$users = DBA::selectToArray('user', [], ["`account_expires_on` < UTC_TIMESTAMP() + INTERVAL ? DAY AND `expire_notification_sent` <= ?",
5, DBA::NULL_DATETIME]);
foreach($users as $rr) {
notification([
DI::notify()->createFromArray([
'type' => Notification\Type::SYSTEM,
'uid' => $rr['uid'],
'system_type' => 'testdrive_expire',