Fix notices in include/enotify
This commit is contained in:
parent
0de1351a09
commit
481b0ac138
|
@ -42,9 +42,9 @@ function notification($params)
|
||||||
}
|
}
|
||||||
|
|
||||||
$params['notify_flags'] = defaults($params, 'notify_flags', $user['notify-flags']);
|
$params['notify_flags'] = defaults($params, 'notify_flags', $user['notify-flags']);
|
||||||
$params['language'] = defaults($params, 'language', $user['language']);
|
$params['language'] = defaults($params, 'language' , $user['language']);
|
||||||
$params['to_name'] = defaults($params, 'to_name', $user['username']);
|
$params['to_name'] = defaults($params, 'to_name' , $user['username']);
|
||||||
$params['to_email'] = defaults($params, 'to_email', $user['email']);
|
$params['to_email'] = defaults($params, 'to_email' , $user['email']);
|
||||||
|
|
||||||
// from here on everything is in the recipients language
|
// from here on everything is in the recipients language
|
||||||
L10n::pushLang($params['language']);
|
L10n::pushLang($params['language']);
|
||||||
|
|
|
@ -83,10 +83,11 @@ class DBStructure
|
||||||
$body = sprintf($body, $error_message);
|
$body = sprintf($body, $error_message);
|
||||||
|
|
||||||
notification([
|
notification([
|
||||||
'type' => SYSTEM_EMAIL,
|
'uid' => $admin['uid'],
|
||||||
|
'type' => SYSTEM_EMAIL,
|
||||||
'to_email' => $admin['email'],
|
'to_email' => $admin['email'],
|
||||||
'preamble' => $preamble,
|
'preamble' => $preamble,
|
||||||
'body' => $body,
|
'body' => $body,
|
||||||
'language' => $lang]
|
'language' => $lang]
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue