aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/phpbb/notification/type/post.php
diff options
context:
space:
mode:
authorCesar G <prototech91@gmail.com>2013-11-21 13:15:08 -0800
committerCesar G <prototech91@gmail.com>2013-11-21 13:15:08 -0800
commit43f454a6c6347827a01a1e31478a846ad05bc7f4 (patch)
tree9d71c3000006553f3762eef36a80a959cc55ee6a /phpBB/phpbb/notification/type/post.php
parentbcf347420e4fe400d02a6ee58e63839f18a86362 (diff)
downloadforums-43f454a6c6347827a01a1e31478a846ad05bc7f4.tar
forums-43f454a6c6347827a01a1e31478a846ad05bc7f4.tar.gz
forums-43f454a6c6347827a01a1e31478a846ad05bc7f4.tar.bz2
forums-43f454a6c6347827a01a1e31478a846ad05bc7f4.tar.xz
forums-43f454a6c6347827a01a1e31478a846ad05bc7f4.zip
[ticket/11959] Use COMMA_SEPARATOR to join the user list.
PHPBB3-11959
Diffstat (limited to 'phpBB/phpbb/notification/type/post.php')
-rw-r--r--phpBB/phpbb/notification/type/post.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/notification/type/post.php b/phpBB/phpbb/notification/type/post.php
index 0d07df8adf..e9f9d48978 100644
--- a/phpBB/phpbb/notification/type/post.php
+++ b/phpBB/phpbb/notification/type/post.php
@@ -207,7 +207,7 @@ class post extends \phpbb\notification\type\base
return $this->user->lang(
$lang_key,
- implode(', ', $usernames),
+ implode($this->user->lang['COMMA_SEPARATOR'], $usernames),
censor_text($this->get_data('topic_title')),
$extra_cnt
);