From bef8f95ef3e638cb843810ed68cd9617e6e2cc48 Mon Sep 17 00:00:00 2001 From: friendica Date: Sat, 24 Dec 2011 22:36:17 -0800 Subject: more enotify --- include/enotify.php | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'include/enotify.php') diff --git a/include/enotify.php b/include/enotify.php index 5febe4113..cf0788e6a 100644 --- a/include/enotify.php +++ b/include/enotify.php @@ -38,10 +38,10 @@ function notification($params) { $subject = sprintf( t('New mail received at %s'),$sitename); - $new_email = sprintf( t('%s sent you a new private message at %s.'),$params['source_name'],$sitename); - $email_visit = t('Please visit %s to view and/or reply to your private messages.'); - $email_tlink = sprintf( $email_visit, $siteurl . '/message' ); - $email_hlink = sprintf( $email_visit, '' . $sitename . ''); + $preamble = sprintf( t('%s sent you a new private message at %s.'),$params['source_name'],$sitename); + $sitelink = t('Please visit %s to view and/or reply to your private messages.'); + $tsitelink = sprintf( $email_visit, $siteurl . '/message' ); + $hsitelink = sprintf( $email_visit, '' . $sitename . ''); } @@ -53,14 +53,13 @@ function notification($params) { push_lang($params['language']); - $msg['notificationfromname'] = $sender_name; - $msg['notificationfromemail'] = $sender_email; + $msg = array(); + $msg['fromname'] = $sender_name; + $msg['fromemail'] = $sender_email; - $msg['textversion'] - = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r", "\\n"), "\n", + $msg['textversion'] = strip_tags(html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r", "\\n"), "\n", $body))),ENT_QUOTES,'UTF-8')); - $msg['htmlversion'] - = html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r","\\n\\n" ,"\\n"), + $msg['htmlversion'] = html_entity_decode(bbcode(stripslashes(str_replace(array("\\r\\n", "\\r","\\n\\n" ,"\\n"), "
\n",$body)))); // load the template for private message notifications -- cgit v1.2.3