From: Lo?c C. <lo...@us...> - 2001-03-21 19:31:33
|
Update of /cvsroot/phpmychat/phpMyChat - 0.14/chat/lib/commands In directory usw-pr-cvs1:/tmp/cvs-serv32436/chat/lib/commands Added Files: me.cmd.php3 Log Message: This file was missing in the CVS tree! ***** Bogus filespec: - ***** Bogus filespec: 0.14/chat/lib/commands --- NEW FILE --- <?php // Check for bad words in the message if necessary if (C_BAD_WORDS == 1) { include("./lib/swearing.lib.php3"); $Cmd[1] = checkwords($Cmd[1], false); }; $M = "<B>* ".$U." </B>".stripslashes($Cmd[1]); AddMessage($M, $T, $R, $U, $C, ''); $IsCommand = true; $RefreshMessages = true; ?> |