diff options
author | Cesar G <prototech91@gmail.com> | 2013-11-21 13:15:08 -0800 |
---|---|---|
committer | Cesar G <prototech91@gmail.com> | 2013-11-21 13:15:08 -0800 |
commit | 43f454a6c6347827a01a1e31478a846ad05bc7f4 (patch) | |
tree | 9d71c3000006553f3762eef36a80a959cc55ee6a | |
parent | bcf347420e4fe400d02a6ee58e63839f18a86362 (diff) | |
download | forums-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
-rw-r--r-- | phpBB/phpbb/notification/type/post.php | 2 |
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 ); |