Update of /cvsroot/phpmychat/phpMyChat-0.15/chat/localization/greek
In directory usw-pr-cvs1:/tmp/cvs-serv10095/chat/localization/greek
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/greek/tutorial.loc,v
retrieving revision 1.2
retrieving revision 1.3
diff -C2 -r1.2 -r1.3
*** tutorial.loc 2001/11/28 23:17:09 1.2
--- tutorial.loc 2001/12/10 22:49:40 1.3
***************
*** 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))
|