[ticket/11423] Send unformatted usernames to the email template

PHPBB3-11423
This commit is contained in:
Nathaniel Guse 2013-03-09 09:12:46 -06:00
parent 7bb32d27ac
commit 36de18e174
2 changed files with 2 additions and 2 deletions

View file

@ -216,7 +216,7 @@ class phpbb_notification_type_post extends phpbb_notification_type_base
} }
else else
{ {
$username = $this->user_loader->get_username($this->get_data('poster_id'), 'no_profile'); $username = $this->user_loader->get_username($this->get_data('poster_id'), 'username');
} }
return array( return array(

View file

@ -178,7 +178,7 @@ class phpbb_notification_type_topic extends phpbb_notification_type_base
} }
else else
{ {
$username = $this->user_loader->get_username($this->get_data('poster_id'), 'no_profile'); $username = $this->user_loader->get_username($this->get_data('poster_id'), 'username');
} }
return array( return array(