diff options
author | Josh Woody <a_jelly_doughnut@phpbb.com> | 2010-07-05 22:22:25 -0500 |
---|---|---|
committer | Josh Woody <a_jelly_doughnut@phpbb.com> | 2010-07-08 13:24:45 -0500 |
commit | ae967d16f1ad584d7e03b4466e6cc3d1d067dea6 (patch) | |
tree | d7538d8995facd4f96b462be90ab515f27be8040 /phpBB/language/en/acp/users.php | |
parent | b7ae0fe4e91be1f7dc1d38d2c3c1e5b043d95739 (diff) | |
download | forums-ae967d16f1ad584d7e03b4466e6cc3d1d067dea6.tar forums-ae967d16f1ad584d7e03b4466e6cc3d1d067dea6.tar.gz forums-ae967d16f1ad584d7e03b4466e6cc3d1d067dea6.tar.bz2 forums-ae967d16f1ad584d7e03b4466e6cc3d1d067dea6.tar.xz forums-ae967d16f1ad584d7e03b4466e6cc3d1d067dea6.zip |
[ticket/9650] Do not allow banning the anonymous user by username
Banning anonymous can result in bad things, like not being able to log in. However, it was possible until now.
PHPBB3-9650
Diffstat (limited to 'phpBB/language/en/acp/users.php')
-rw-r--r-- | phpBB/language/en/acp/users.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/users.php b/phpBB/language/en/acp/users.php index 8d9bf0d486..eda9659795 100644 --- a/phpBB/language/en/acp/users.php +++ b/phpBB/language/en/acp/users.php @@ -42,6 +42,7 @@ $lang = array_merge($lang, array( 'BAN_ALREADY_ENTERED' => 'The ban had been previously entered successfully. The ban list has not been updated.', 'BAN_SUCCESSFUL' => 'Ban entered successfully.', + 'CANNOT_BAN_ANONYMOUS' => 'You are not allowed to ban the anonymous account. Permissions for anonymous users can be set under the Permissions tab.', 'CANNOT_BAN_FOUNDER' => 'You are not allowed to ban founder accounts.', 'CANNOT_BAN_YOURSELF' => 'You are not allowed to ban yourself.', 'CANNOT_DEACTIVATE_BOT' => 'You are not allowed to deactivate bot accounts. Please deactivate the bot within the bots page instead.', |