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