|
From: Nathan C. <na...@us...> - 2001-11-25 23:31:07
|
Update of /cvsroot/phpbb/phpBB2/language/lang_english In directory usw-pr-cvs1:/tmp/cvs-serv32602/language/lang_english Modified Files: lang_main.php Log Message: Fixed bug 478218 -- [ and ] in usernames qith quote= bbcode. Usernames can no longer contain the double-quote character. Also removed a dupe from lang_main file. Index: lang_main.php =================================================================== RCS file: /cvsroot/phpbb/phpBB2/language/lang_english/lang_main.php,v retrieving revision 1.51 retrieving revision 1.52 diff -C2 -r1.51 -r1.52 *** lang_main.php 2001/11/24 15:57:31 1.51 --- lang_main.php 2001/11/25 23:31:04 1.52 *************** *** 456,460 **** $lang['No_user_id_specified'] = "Sorry but that user does not exist"; $lang['Wrong_Profile'] = "You cannot modify a profile that is not your own."; - $lang['Bad_username'] = "The username you choose has been taken or is disallowed by the administrator."; $lang['Sorry_banned_or_taken_email'] = "Sorry but the email address you gave has either been banned, is already registered to another user or is invalid. Please try an alternative address, if that is also banned you should contact the board administrator for advice"; $lang['Only_one_avatar'] = "Only one type of avatar can be specified"; --- 456,459 ---- *************** *** 515,519 **** $lang['Password_mismatch'] = "The passwords you entered did not match"; $lang['Current_password_mismatch'] = "The current password you supplied does not match that stored in the database"; ! $lang['Invalid_username'] = "The username you requested has been taken or disallowed"; $lang['Signature_too_long'] = "Your signature is too long"; $lang['Fields_empty'] = "You must fill in the required fields"; --- 514,518 ---- $lang['Password_mismatch'] = "The passwords you entered did not match"; $lang['Current_password_mismatch'] = "The current password you supplied does not match that stored in the database"; ! $lang['Invalid_username'] = "The username you requested has been taken or disallowed, or contains invalid characters like the \" character"; $lang['Signature_too_long'] = "Your signature is too long"; $lang['Fields_empty'] = "You must fill in the required fields"; |