From: Lo?c C. <lo...@us...> - 2001-04-10 14:19:51
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib In directory usw-pr-cvs1:/tmp/cvs-serv3092/chat/lib Modified Files: db_sessions.lib.php3 check_and_kick_user.lib.php3 Log Message: Rename the 'dbSessionInitIt()' method to 'dbSessionInit()' Index: db_sessions.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/db_sessions.lib.php3,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -r1.2 -r1.3 *** db_sessions.lib.php3 2001/04/03 20:10:14 1.2 --- db_sessions.lib.php3 2001/04/10 14:19:48 1.3 *************** *** 26,30 **** // | - in your file, before any call to 'dbSessionStart()': | // | 1. include this library; | ! // | 2. call the 'dbSessionInitIt()' function (see the | // | description of its arguments just before its | // | definition below) | --- 26,30 ---- // | - in your file, before any call to 'dbSessionStart()': | // | 1. include this library; | ! // | 2. call the 'dbSessionInit()' function (see the | // | description of its arguments just before its | // | definition below) | *************** *** 234,238 **** case 3: ! $dbSessionErrorMessage = 'The \'dbSessionInitIt()\' function must be called before to run session commands!'; break; --- 234,238 ---- case 3: ! $dbSessionErrorMessage = 'The \'dbSessionInit()\' function must be called before to run session commands!'; break; *************** *** 287,297 **** * @access public */ ! function dbSessionInitIt( $theDbType = 'mysql', ! $theDbHost = '', $theDbName = '', ! $theDbUser = '', $theDbPswd = '', ! $theDbTable = 'sessions', ! $theLifeTime = 3600, ! $theInitUrl = '' ! ) { global $dbSessionDbLink; --- 287,297 ---- * @access public */ ! function dbSessionInit( $theDbType = 'mysql', ! $theDbHost = '', $theDbName = '', ! $theDbUser = '', $theDbPswd = '', ! $theDbTable = 'sessions', ! $theLifeTime = 3600, ! $theInitUrl = '' ! ) { global $dbSessionDbLink; *************** *** 344,348 **** return true; ! } // end of the 'dbSessionInitIt()' function --- 344,348 ---- return true; ! } // end of the 'dbSessionInit()' function *************** *** 360,364 **** * * @access public ! * @see dbSessionInitIt() */ function dbSessionStart() --- 360,364 ---- * * @access public ! * @see dbSessionInit() */ function dbSessionStart() Index: check_and_kick_user.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/check_and_kick_user.lib.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 |