Update of /cvsroot/phpmychat/phpMyChat-0.15/chat
In directory usw-pr-cvs1:/tmp/cvs-serv21591/chat
Modified Files:
handle_input.php3
Log Message:
Replaced an include by a require
Index: handle_input.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/handle_input.php3,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -r1.29 -r1.30
*** handle_input.php3 2001/05/30 08:07:12 1.29
--- handle_input.php3 2001/05/30 19:25:21 1.30
***************
*** 101,105 ****
$currentRoomType = $dbSessionVars['roomType'];
$slashedCurrentRoomName = pmcSlashSingleQuotes($dbSessionVars['currentRoom']);
! include('./lib/check_and_kick_user.lib.' . C_EXTENSION);
pmcCheckAndKickUser(false);
dbSessionUnregister('noKickTest');
--- 101,105 ----
$currentRoomType = $dbSessionVars['roomType'];
$slashedCurrentRoomName = pmcSlashSingleQuotes($dbSessionVars['currentRoom']);
! require('./lib/check_and_kick_user.lib.' . C_EXTENSION);
pmcCheckAndKickUser(false);
dbSessionUnregister('noKickTest');
***************
*** 267,271 ****
/**
! * Display a JavaScript alert box with the error message or success message if
* necessary
*
--- 267,271 ----
/**
! * Display a JavaScript alert box with the error or success message if
* necessary
*
|