aboutsummaryrefslogtreecommitdiffstats
path: root/mod/item.php
diff options
context:
space:
mode:
authorTobias Diekershoff <tobias.diekershoff@gmx.net>2011-06-15 07:02:38 +0200
committerTobias Diekershoff <tobias.diekershoff@gmx.net>2011-06-15 07:02:38 +0200
commitdbf6ee6a0578a0b4244852b74dac549a25e6f05d (patch)
treee2d33a9b7228d21fd8faa750e6b73eaa4f48e54c /mod/item.php
parentd08b068031f01e1bcf57a46b9e7dfcb217b6fb30 (diff)
parentcee63c7a0d5362e255551d0a8c3dfa667322f8b1 (diff)
downloadvolse-hubzilla-dbf6ee6a0578a0b4244852b74dac549a25e6f05d.tar.gz
volse-hubzilla-dbf6ee6a0578a0b4244852b74dac549a25e6f05d.tar.bz2
volse-hubzilla-dbf6ee6a0578a0b4244852b74dac549a25e6f05d.zip
Merge branch 'master' of git://github.com/friendika/friendika
Diffstat (limited to 'mod/item.php')
-rw-r--r--mod/item.php4
1 files changed, 4 insertions, 0 deletions
diff --git a/mod/item.php b/mod/item.php
index d7c15ff02..776c0dcc2 100644
--- a/mod/item.php
+++ b/mod/item.php
@@ -544,6 +544,7 @@ function item_post(&$a) {
// load the template for private message notifications
$tpl = get_intltext_template('cmnt_received_html_body_eml.tpl');
$email_html_body_tpl = replace_macros($tpl,array(
+ '$username' => $user['username'],
'$sitename' => $a->config['sitename'], // name of this site
'$siteurl' => $a->get_baseurl(), // descriptive url of this site
'$thumb' => $author['thumb'], // thumbnail url for sender icon
@@ -557,6 +558,7 @@ function item_post(&$a) {
// load the template for private message notifications
$tpl = get_intltext_template('cmnt_received_text_body_eml.tpl');
$email_text_body_tpl = replace_macros($tpl,array(
+ '$username' => $user['username'],
'$sitename' => $a->config['sitename'], // name of this site
'$siteurl' => $a->get_baseurl(), // descriptive url of this site
'$thumb' => $author['thumb'], // thumbnail url for sender icon
@@ -610,6 +612,7 @@ function item_post(&$a) {
// load the template for private message notifications
$tpl = load_view_file('view/wall_received_html_body_eml.tpl');
$email_html_body_tpl = replace_macros($tpl,array(
+ '$username' => $user['username'],
'$sitename' => $a->config['sitename'], // name of this site
'$siteurl' => $a->get_baseurl(), // descriptive url of this site
'$thumb' => $author['thumb'], // thumbnail url for sender icon
@@ -622,6 +625,7 @@ function item_post(&$a) {
// load the template for private message notifications
$tpl = load_view_file('view/wall_received_text_body_eml.tpl');
$email_text_body_tpl = replace_macros($tpl,array(
+ '$username' => $user['username'],
'$sitename' => $a->config['sitename'], // name of this site
'$siteurl' => $a->get_baseurl(), // descriptive url of this site
'$thumb' => $author['thumb'], // thumbnail url for sender icon