diff options
author | friendica <info@friendica.com> | 2012-03-26 01:43:26 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-03-26 01:43:26 -0700 |
commit | b240b8489aa34d3016ffb11c8a2176eca41c5e5a (patch) | |
tree | 3139baa2293dc01fa5e99aef095c6a60ede69887 /include | |
parent | ca31aed490a65ce4b5795e1440d4fbf303fdd399 (diff) | |
download | volse-hubzilla-b240b8489aa34d3016ffb11c8a2176eca41c5e5a.tar.gz volse-hubzilla-b240b8489aa34d3016ffb11c8a2176eca41c5e5a.tar.bz2 volse-hubzilla-b240b8489aa34d3016ffb11c8a2176eca41c5e5a.zip |
language issues in enotify
Diffstat (limited to 'include')
-rwxr-xr-x | include/enotify.php | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/include/enotify.php b/include/enotify.php index 1918f26df..8385bdec5 100755 --- a/include/enotify.php +++ b/include/enotify.php @@ -5,6 +5,12 @@ function notification($params) { logger('notification: entry', LOGGER_DEBUG); $a = get_app(); + + // from here on everything is in the recipients language + + push_lang($params['language']); + + $banner = t('Friendica Notification'); $product = FRIENDICA_PLATFORM; $siteurl = z_path(); @@ -180,9 +186,6 @@ function notification($params) { $hsitelink = $h['hsitelink']; $itemlink = $h['itemlink']; - // from here on everything is in the recipients language - - push_lang($params['language']); require_once('include/html2bbcode.php'); @@ -234,8 +237,10 @@ function notification($params) { ); if($r) $notify_id = $r[0]['id']; - else + else { + pop_lang(); return; + } $itemlink = $a->get_baseurl() . '/notify/view/' . $notify_id; $msg = replace_macros($epreamble,array('$itemlink' => $itemlink)); @@ -246,7 +251,6 @@ function notification($params) { ); - // send email notification if notification preferences permit require_once('bbcode.php'); |