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