From: Lo?c C. <lo...@us...> - 2001-12-10 22:49:43
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/danish In directory usw-pr-cvs1:/tmp/cvs-serv10095/chat/localization/danish Modified Files: tutorial.loc Log Message: * taken into account new php global arrays * PEAR codding standards (capitalized constants) Index: tutorial.loc =================================================================== RCS file: /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/danish/tutorial.loc,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -r1.4 -r1.5 *** tutorial.loc 2001/06/12 19:45:30 1.4 --- tutorial.loc 2001/12/10 22:49:39 1.5 *************** *** 24,28 **** * Gets the names and values for the variables sent to this script */ ! if (isset($HTTP_GET_VARS)) { while(list($name, $value) = each($HTTP_GET_VARS)) --- 24,35 ---- * Gets the names and values for 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)) |