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