From: Lo?c C. <lo...@us...> - 2001-12-10 22:52:14
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs In directory usw-pr-cvs1:/tmp/cvs-serv11111/chat/lib/index_libs Modified Files: main_index.lib.php3 Log Message: * taken into account new php global arrays * PEAR codding standards (capitalized constants) Index: main_index.lib.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/lib/index_libs/main_index.lib.php3,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -r1.50 -r1.51 *** main_index.lib.php3 2001/12/08 11:32:14 1.50 --- main_index.lib.php3 2001/12/10 22:52:11 1.51 *************** *** 40,44 **** */ if (!isset($PHP_SELF)) ! $PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF']; if (!defined('C_EXTENSION')) define('C_EXTENSION', (substr($PHP_SELF, -1) == 3) ? 'php3' : 'php'); --- 40,44 ---- */ if (!isset($PHP_SELF)) ! $PHP_SELF = (isset($_SERVER) ? $_SERVER['PHP_SELF'] : $HTTP_SERVER_VARS['PHP_SELF']); if (!defined('C_EXTENSION')) define('C_EXTENSION', (substr($PHP_SELF, -1) == 3) ? 'php3' : 'php'); |