aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB
diff options
context:
space:
mode:
authorNathaniel Guse <nathaniel.guse@gmail.com>2013-03-09 09:12:46 -0600
committerNathaniel Guse <nathaniel.guse@gmail.com>2013-03-09 09:12:46 -0600
commit36de18e174c1137904d2f318d4f5eb7db9e96ebc (patch)
tree951ff64d90fb299ab5f24d669d64786301fffc48 /phpBB
parent7bb32d27ac7505b7dfc05c89be861441b1a52e15 (diff)
downloadforums-36de18e174c1137904d2f318d4f5eb7db9e96ebc.tar
forums-36de18e174c1137904d2f318d4f5eb7db9e96ebc.tar.gz
forums-36de18e174c1137904d2f318d4f5eb7db9e96ebc.tar.bz2
forums-36de18e174c1137904d2f318d4f5eb7db9e96ebc.tar.xz
forums-36de18e174c1137904d2f318d4f5eb7db9e96ebc.zip
[ticket/11423] Send unformatted usernames to the email template
PHPBB3-11423
Diffstat (limited to 'phpBB')
-rw-r--r--phpBB/includes/notification/type/post.php2
-rw-r--r--phpBB/includes/notification/type/topic.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/includes/notification/type/post.php b/phpBB/includes/notification/type/post.php
index ddfa720e5e..d8ffdea81d 100644
--- a/phpBB/includes/notification/type/post.php
+++ b/phpBB/includes/notification/type/post.php
@@ -216,7 +216,7 @@ class phpbb_notification_type_post extends phpbb_notification_type_base
}
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(
diff --git a/phpBB/includes/notification/type/topic.php b/phpBB/includes/notification/type/topic.php
index 2549b29409..22436d3fb1 100644
--- a/phpBB/includes/notification/type/topic.php
+++ b/phpBB/includes/notification/type/topic.php
@@ -178,7 +178,7 @@ class phpbb_notification_type_topic extends phpbb_notification_type_base
}
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(