From: Lo?c C. <lo...@us...> - 2001-12-10 22:52:14
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/config In directory usw-pr-cvs1:/tmp/cvs-serv11111/chat/config Modified Files: admin.css.php3 start_page.css.php3 style.css.php3 Log Message: * taken into account new php global arrays * PEAR codding standards (capitalized constants) Index: admin.css.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/config/admin.css.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** admin.css.php3 2001/07/05 19:52:46 1.5 --- admin.css.php3 2001/12/10 22:52:11 1.6 *************** *** 27,31 **** * Gets the names and the values of the variables sent to this script */ ! if (isset($HTTP_GET_VARS)) { while(list($name, $value) = each($HTTP_GET_VARS)) --- 27,38 ---- * Gets the names and the values of the variables sent to this script */ ! if (isset($_GET)) ! { ! while(list($name, $value) = each($_GET)) ! { ! $$name = $value; ! } ! } ! else if (isset($HTTP_GET_VARS)) { while(list($name, $value) = each($HTTP_GET_VARS)) Index: start_page.css.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/config/start_page.css.php3,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -r1.5 -r1.6 *** start_page.css.php3 2001/07/05 19:52:46 1.5 --- start_page.css.php3 2001/12/10 22:52:11 1.6 *************** *** 27,31 **** * Gets the names and the values of the variables sent to this script */ ! if (isset($HTTP_GET_VARS)) { while(list($name, $value) = each($HTTP_GET_VARS)) --- 27,38 ---- * Gets the names and the values of the variables sent to this script */ ! if (isset($_GET)) ! { ! while(list($name, $value) = each($_GET)) ! { ! $$name = $value; ! } ! } ! else if (isset($HTTP_GET_VARS)) { while(list($name, $value) = each($HTTP_GET_VARS)) Index: style.css.php3 =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/config/style.css.php3,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -r1.8 -r1.9 *** style.css.php3 2001/12/08 18:33:38 1.8 --- style.css.php3 2001/12/10 22:52:11 1.9 *************** *** 26,30 **** * Gets the names and the values of the variables sent to this script */ ! if (isset($HTTP_GET_VARS)) { while(list($name, $value) = each($HTTP_GET_VARS)) --- 26,37 ---- * Gets the names and the values of the variables sent to this script */ ! if (isset($_GET)) ! { ! while(list($name, $value) = each($_GET)) ! { ! $$name = $value; ! } ! } ! else if (isset($HTTP_GET_VARS)) { while(list($name, $value) = each($HTTP_GET_VARS)) |