Update of /cvsroot/phpmychat/phpMyChat-0.15
In directory usw-pr-cvs1:/tmp/cvs-serv14988
Modified Files:
chat_activity.php3 phpMyChat.php3
Log Message:
* taken into account new php global arrays\n* PEAR codding standards (capitalized constants)
Index: chat_activity.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat_activity.php3,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** chat_activity.php3 2001/05/31 19:56:32 1.1
--- chat_activity.php3 2001/12/11 13:46:19 1.2
***************
*** 53,57 ****
*/
if (!isset($PHP_SELF))
! $PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF'];
define('C_EXTENSION', (substr($PHP_SELF, -1) == 3) ? 'php3' : 'php');
--- 53,57 ----
*/
if (!isset($PHP_SELF))
! $PHP_SELF = (isset($_SERVER) ? $_SERVER['PHP_SELF'] : $HTTP_SERVER_VARS['PHP_SELF']);
define('C_EXTENSION', (substr($PHP_SELF, -1) == 3) ? 'php3' : 'php');
Index: phpMyChat.php3
===================================================================
RCS file: /cvsroot/phpmychat/phpMyChat-0.15/phpMyChat.php3,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -r1.1 -r1.2
*** phpMyChat.php3 2001/05/31 19:56:32 1.1
--- phpMyChat.php3 2001/12/11 13:46:19 1.2
***************
*** 38,42 ****
// Gets the extension for the php scripts
if (!isset($PHP_SELF))
! $PHP_SELF = $HTTP_SERVER_VARS['PHP_SELF'];
define('C_EXTENSION', (substr($PHP_SELF, -1) == 3) ? 'php3' : 'php');
--- 38,42 ----
// Gets the extension for the php scripts
if (!isset($PHP_SELF))
! $PHP_SELF = (isset($_SERVER) ? $_SERVER['PHP_SELF'] : $HTTP_SERVER_VARS['PHP_SELF']);
define('C_EXTENSION', (substr($PHP_SELF, -1) == 3) ? 'php3' : 'php');
|