language issues in enotify
This commit is contained in:
parent
ca31aed490
commit
b240b8489a
1 changed files with 9 additions and 5 deletions
|
@ -5,6 +5,12 @@ function notification($params) {
|
||||||
logger('notification: entry', LOGGER_DEBUG);
|
logger('notification: entry', LOGGER_DEBUG);
|
||||||
|
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
|
|
||||||
|
// from here on everything is in the recipients language
|
||||||
|
|
||||||
|
push_lang($params['language']);
|
||||||
|
|
||||||
|
|
||||||
$banner = t('Friendica Notification');
|
$banner = t('Friendica Notification');
|
||||||
$product = FRIENDICA_PLATFORM;
|
$product = FRIENDICA_PLATFORM;
|
||||||
$siteurl = z_path();
|
$siteurl = z_path();
|
||||||
|
@ -180,9 +186,6 @@ function notification($params) {
|
||||||
$hsitelink = $h['hsitelink'];
|
$hsitelink = $h['hsitelink'];
|
||||||
$itemlink = $h['itemlink'];
|
$itemlink = $h['itemlink'];
|
||||||
|
|
||||||
// from here on everything is in the recipients language
|
|
||||||
|
|
||||||
push_lang($params['language']);
|
|
||||||
|
|
||||||
require_once('include/html2bbcode.php');
|
require_once('include/html2bbcode.php');
|
||||||
|
|
||||||
|
@ -234,8 +237,10 @@ function notification($params) {
|
||||||
);
|
);
|
||||||
if($r)
|
if($r)
|
||||||
$notify_id = $r[0]['id'];
|
$notify_id = $r[0]['id'];
|
||||||
else
|
else {
|
||||||
|
pop_lang();
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
$itemlink = $a->get_baseurl() . '/notify/view/' . $notify_id;
|
$itemlink = $a->get_baseurl() . '/notify/view/' . $notify_id;
|
||||||
$msg = replace_macros($epreamble,array('$itemlink' => $itemlink));
|
$msg = replace_macros($epreamble,array('$itemlink' => $itemlink));
|
||||||
|
@ -246,7 +251,6 @@ function notification($params) {
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
// send email notification if notification preferences permit
|
// send email notification if notification preferences permit
|
||||||
|
|
||||||
require_once('bbcode.php');
|
require_once('bbcode.php');
|
||||||
|
|
Loading…
Reference in a new issue