diff options
author | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-21 13:52:15 +0100 |
---|---|---|
committer | Fabio Comuni <fabrix.xm@gmail.com> | 2011-11-21 13:52:15 +0100 |
commit | cb05e677a96e1312263c0a1c63ee10cea62268b1 (patch) | |
tree | 9234db8ab0c946ed65123181acba0df71524a8eb /mod | |
parent | a86fd26bd86945fe75b7220e149b8986f88feb01 (diff) | |
parent | aaedac8f574278fba89cd11d3d8f1adaeb6b030e (diff) | |
download | volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.tar.gz volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.tar.bz2 volse-hubzilla-cb05e677a96e1312263c0a1c63ee10cea62268b1.zip |
Merge remote-tracking branch 'friendica/master'
Diffstat (limited to 'mod')
-rw-r--r-- | mod/item.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mod/item.php b/mod/item.php index ee3bdca99..145c42cec 100644 --- a/mod/item.php +++ b/mod/item.php @@ -865,12 +865,12 @@ function item_post(&$a) { $addr = trim($recip); if(! strlen($addr)) continue; - $disclaimer = '<hr />' . sprintf( t('This message was sent to you by %s, a member of the Friendika social network.'),$a->user['username']) + $disclaimer = '<hr />' . sprintf( t('This message was sent to you by %s, a member of the Friendica social network.'),$a->user['username']) . '<br />'; $disclaimer .= sprintf( t('You may visit them online at %s'), $a->get_baseurl() . '/profile/' . $a->user['nickname']) . EOL; $disclaimer .= t('Please contact the sender by replying to this post if you do not wish to receive these messages.') . EOL; - $subject = '[Friendika]' . ' ' . sprintf( t('%s posted an update.'),$a->user['username']); + $subject = '[Friendica]' . ' ' . sprintf( t('%s posted an update.'),$a->user['username']); $headers = 'From: ' . $a->user['username'] . ' <' . $a->user['email'] . '>' . "\n"; $headers .= 'MIME-Version: 1.0' . "\n"; $headers .= 'Content-Type: text/html; charset=UTF-8' . "\n"; |