File: phpbb/notification/type/quote.php
Unmodified
Added
Modified
Removed
Line 168 | Line 168 |
---|
$user_data = $this->user_loader->get_user($this->get_data('poster_id'));
return array_merge(parent::get_email_template_variables(), array(
|
$user_data = $this->user_loader->get_user($this->get_data('poster_id'));
return array_merge(parent::get_email_template_variables(), array(
|
'AUTHOR_NAME' => htmlspecialchars_decode($user_data['username']),
| 'AUTHOR_NAME' => html_entity_decode($user_data['username'], ENT_COMPAT),
|
)); }
| )); }
|