From: Lo?c C. <lo...@us...> - 2001-04-10 17:51:04
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv23121/chat/lib/index_libs Modified Files: index_validation.lib.php3 Log Message: Fix some bad translations ('bad words' to 'swear words') Index: index_validation.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/index_validation.lib.php3,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -r1.3 -r1.4 *** index_validation.lib.php3 2001/04/10 15:00:06 1.3 --- index_validation.lib.php3 2001/04/10 17:51:00 1.4 *************** *** 74,78 **** $error1 = L_ERR_USR_16; } ! // Checks for coarse words in the nick else if (C_BAD_WORDS) { --- 74,78 ---- $error1 = L_ERR_USR_16; } ! // Checks for swear words in the nick else if (C_BAD_WORDS) { *************** *** 196,200 **** $error2 = L_ERR_ROM_1; } ! // Checks for coarse words in the room name else if (C_BAD_WORDS && checkWords($createRoomName, true)) { --- 196,200 ---- $error2 = L_ERR_ROM_1; } ! // Checks for swear words in the room name else if (C_BAD_WORDS && checkWords($createRoomName, true)) { |