Removed unneeded data for notifications

pull/1047/head
Michael 2020-11-28 17:24:51 +00:00
parent b3f7952be3
commit 6272ee3d09
2 changed files with 2 additions and 8 deletions

View File

@ -58,12 +58,9 @@ function public_server_cron($a, $b)
if (DBA::isResult($r)) {
foreach ($r as $rr) {
notification([
'uid' => $rr['uid'],
'type' => Type::SYSTEM,
'uid' => $rr['uid'],
'system_type' => 'public_server_expire',
'language' => $rr['language'],
'to_name' => $rr['username'],
'to_email' => $rr['email'],
'source_name' => DI::l10n()->t('Administrator'),
'source_link' => DI::baseUrl()->get(),
'source_photo' => DI::baseUrl()->get() . '/images/person-80.jpg',

View File

@ -58,12 +58,9 @@ function testdrive_cron($a,$b) {
if(count($r)) {
foreach($r as $rr) {
notification([
'uid' => $rr['uid'],
'type' => Type::SYSTEM,
'uid' => $rr['uid'],
'system_type' => 'testdrive_expire',
'language' => $rr['language'],
'to_name' => $rr['username'],
'to_email' => $rr['email'],
'source_name' => DI::l10n()->t('Administrator'),
'source_link' => DI::baseUrl()->get(),
'source_photo' => DI::baseUrl()->get() . '/images/person-80.jpg',