aboutsummaryrefslogtreecommitdiffstats
path: root/phpBB/includes/ucp/ucp_groups.php
diff options
context:
space:
mode:
authorNathan <exreaction@phpbb.com>2012-07-14 18:12:57 -0500
committerNathan Guse <nathaniel.guse@gmail.com>2012-07-22 14:32:03 -0500
commit67665f59577092badf7eb0b5585e5ae39c52c8da (patch)
tree93f6b91eef6b0f4cbb6bdb748cba089b5559a94c /phpBB/includes/ucp/ucp_groups.php
parent841ea0e494504400c798faa6cc860dd1179e1004 (diff)
downloadforums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar.gz
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar.bz2
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.tar.xz
forums-67665f59577092badf7eb0b5585e5ae39c52c8da.zip
[ticket/10990] Use $user->lang['COMMA_SEPARATOR'] when appropriate
PHPBB3-10990
Diffstat (limited to 'phpBB/includes/ucp/ucp_groups.php')
-rw-r--r--phpBB/includes/ucp/ucp_groups.php5
1 files changed, 3 insertions, 2 deletions
diff --git a/phpBB/includes/ucp/ucp_groups.php b/phpBB/includes/ucp/ucp_groups.php
index aa9510b63b..65ab92e78e 100644
--- a/phpBB/includes/ucp/ucp_groups.php
+++ b/phpBB/includes/ucp/ucp_groups.php
@@ -846,7 +846,7 @@ class ucp_groups
$base_url = $this->u_action . "&amp;action=$action&amp;g=$group_id";
phpbb_generate_template_pagination($template, $base_url, 'pagination', 'start', $total_members, $config['topics_per_page'], $start);
-
+
$template->assign_vars(array(
'S_LIST' => true,
'S_ACTION_OPTIONS' => $s_action_options,
@@ -1069,7 +1069,8 @@ class ucp_groups
'mode' => $mode,
'action' => $action
);
- confirm_box(false, $user->lang('GROUP_CONFIRM_ADD_USERS', sizeof($name_ary), implode(', ', $name_ary)), build_hidden_fields($s_hidden_fields));
+
+ confirm_box(false, $user->lang('GROUP_CONFIRM_ADD_USERS', sizeof($name_ary), implode($user->lang['COMMA_SEPARATOR'], $name_ary)), build_hidden_fields($s_hidden_fields));
}
trigger_error($user->lang['NO_USERS_ADDED'] . '<br /><br />' . sprintf($user->lang['RETURN_PAGE'], '<a href="' . $this->u_action . '&amp;action=list&amp;g=' . $group_id . '">', '</a>'));