[Phpslash-commit] CVS: phpslash-dev/public_html config-dist.php,1.35,1.36
Brought to you by:
joestewart,
nhruby
From: Joe S. <joe...@us...> - 2004-11-06 22:19:03
|
Update of /cvsroot/phpslash/phpslash-dev/public_html In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv30414/phpslash-dev/public_html Modified Files: config-dist.php Log Message: Swedish Translation. Index: config-dist.php =================================================================== RCS file: /cvsroot/phpslash/phpslash-dev/public_html/config-dist.php,v retrieving revision 1.35 retrieving revision 1.36 diff -C2 -d -r1.35 -r1.36 *** config-dist.php 6 Nov 2004 18:59:16 -0000 1.35 --- config-dist.php 6 Nov 2004 22:18:41 -0000 1.36 *************** *** 494,501 **** */ $ary = array(); ! if(count($_GET) > 0) { ! $ary = clean($_GET); ! } elseif (!empty($HTTP_GET_VARS)) { $ary = clean($HTTP_GET_VARS); } elseif (!empty($_SERVER['PATH_INFO'])) { // see if PATH_INFO used instead of GET variables --- 494,501 ---- */ $ary = array(); ! if (!empty($HTTP_GET_VARS)) { $ary = clean($HTTP_GET_VARS); + } elseif(count($_GET) > 0) { + $ary = clean($_GET); } elseif (!empty($_SERVER['PATH_INFO'])) { // see if PATH_INFO used instead of GET variables |