[ticket/11959] Use COMMA_SEPARATOR to join the user list.

PHPBB3-11959
This commit is contained in:
Cesar G 2013-11-21 13:15:08 -08:00
parent bcf347420e
commit 43f454a6c6

View file

@ -207,7 +207,7 @@ class post extends \phpbb\notification\type\base
return $this->user->lang( return $this->user->lang(
$lang_key, $lang_key,
implode(', ', $usernames), implode($this->user->lang['COMMA_SEPARATOR'], $usernames),
censor_text($this->get_data('topic_title')), censor_text($this->get_data('topic_title')),
$extra_cnt $extra_cnt
); );