mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 14:18:52 +00:00
[ticket/11959] Use COMMA_SEPARATOR to join the user list.
PHPBB3-11959
This commit is contained in:
parent
bcf347420e
commit
43f454a6c6
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||||
);
|
);
|
||||||
|
|
Loading…
Add table
Reference in a new issue