From: Lo?c C. <lo...@us...> - 2001-12-10 22:49:43
|
Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/french In directory usw-pr-cvs1:/tmp/cvs-serv10095/chat/localization/french 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/french/tutorial.loc,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -r1.10 -r1.11 *** tutorial.loc 2001/06/10 14:57:49 1.10 --- tutorial.loc 2001/12/10 22:49:39 1.11 *************** *** 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)) |