Dear $username not expanded/replaced in text emails
This commit is contained in:
parent
fcdebc2324
commit
ca84823437
2 changed files with 10 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue