diff options
author | battye <battye@phpbb.com> | 2018-11-26 13:08:57 +0000 |
---|---|---|
committer | battye <battye@phpbb.com> | 2018-11-26 13:08:57 +0000 |
commit | 101829b4dce2874bbe53264c1769bf9699527c2f (patch) | |
tree | d4c27f1ab919d33d01dd57bd8ad83ce0ed5a90d3 /phpBB/language | |
parent | b8bdccbc4431af37a0a894ad29907699402605de (diff) | |
download | forums-101829b4dce2874bbe53264c1769bf9699527c2f.tar forums-101829b4dce2874bbe53264c1769bf9699527c2f.tar.gz forums-101829b4dce2874bbe53264c1769bf9699527c2f.tar.bz2 forums-101829b4dce2874bbe53264c1769bf9699527c2f.tar.xz forums-101829b4dce2874bbe53264c1769bf9699527c2f.zip |
[ticket/15883] Add error for invalid usernames being added to a group
Update the ACP and the UCP so that when bulk adding users to a group,
if invalid usernames are submitted alongside valid usernames then a
message will be displayed to inform the user what the invalid usernames
are.
PHPBB3-15883
Diffstat (limited to 'phpBB/language')
-rw-r--r-- | phpBB/language/en/acp/groups.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/groups.php b/phpBB/language/en/acp/groups.php index c3a5ae9e44..5d68132a34 100644 --- a/phpBB/language/en/acp/groups.php +++ b/phpBB/language/en/acp/groups.php @@ -111,6 +111,7 @@ $lang = array_merge($lang, array( 'GROUP_USERS_ADDED' => 'New users added to group successfully.', 'GROUP_USERS_EXIST' => 'The selected users are already members.', 'GROUP_USERS_REMOVE' => 'Users removed from group and new defaults set successfully.', + 'GROUP_USERS_INVALID' => 'No users were added to the group as the following usernames do not exist: %s', 'LEGEND_EXPLAIN' => 'These are the groups which are displayed in the group legend:', 'LEGEND_SETTINGS' => 'Legend settings', |