Merge pull request #1348 from MrPetovan/bug/warnings

[public_server] Add expected "event" key in public_server_cron()
pull/1349/head
Michael Vogel 2023-01-09 15:40:38 +01:00 committed by GitHub
commit 9763635e5b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -1,6 +1,6 @@
<?php
/**
* @copyright Copyright (C) 2010-2022, the Friendica project
* @copyright Copyright (C) 2010-2023, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*

View File

@ -1,6 +1,6 @@
<?php
/**
* @copyright Copyright (C) 2010-2022, the Friendica project
* @copyright Copyright (C) 2010-2023, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*

View File

@ -55,6 +55,7 @@ function public_server_cron(App $a, $b)
foreach ($users as $rr) {
DI::notify()->createFromArray([
'type' => Notification\Type::SYSTEM,
'event' => 'SYSTEM_PUBLIC_SERVER_EXPIRATION',
'uid' => $rr['uid'],
'system_type' => 'public_server_expire',
'source_name' => DI::l10n()->t('Administrator'),