Update of /cvsroot/phpslash/phpslash-ft/public_html
In directory usw-pr-cvs1:/tmp/cvs-serv7746/phpslash-ft/public_html
Modified Files:
index.php3
Log Message:
QUERY_STRING tweaks
Index: index.php3
===================================================================
RCS file: /cvsroot/phpslash/phpslash-ft/public_html/index.php3,v
retrieving revision 1.57
retrieving revision 1.58
diff -C2 -d -r1.57 -r1.58
*** index.php3 5 May 2002 17:23:51 -0000 1.57
--- index.php3 30 May 2002 16:00:16 -0000 1.58
***************
*** 69,76 ****
'index' => $tplfile //"index3col.tpl"
));
!
! // TODO register_globals?
! if( !empty($QUERY_STRING)) {
! $QUERY_STRING = '?'.$QUERY_STRING;
}
--- 69,77 ----
'index' => $tplfile //"index3col.tpl"
));
!
! if( !empty($GLOBALS['QUERY_STRING'])) {
! $QUERY_STRING = '?'.$GLOBALS['QUERY_STRING'];
! } else {
! $QUERY_STRING = '';
}
|