phpgroupware-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Phpgroupware-cvs] CVS: phpwebhosting/inc class.bophpwebhosting.inc.php,


From: Mark A Peters <address@hidden>
Subject: [Phpgroupware-cvs] CVS: phpwebhosting/inc class.bophpwebhosting.inc.php,1.6,1.7 class.uiphpwebhosting.inc.php,1.7,1.8
Date: Mon, 29 Apr 2002 20:21:37 -0400

Update of /cvsroot/phpgroupware/phpwebhosting/inc
In directory subversions:/tmp/cvs-serv15046

Modified Files:
        class.bophpwebhosting.inc.php class.uiphpwebhosting.inc.php 
Log Message:
Converting to get_var() for all HTTP_*_VARS.

Index: class.bophpwebhosting.inc.php
===================================================================
RCS file: 
/cvsroot/phpgroupware/phpwebhosting/inc/class.bophpwebhosting.inc.php,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -r1.6 -r1.7
*** class.bophpwebhosting.inc.php       27 Dec 2001 15:24:35 -0000      1.6
--- class.bophpwebhosting.inc.php       30 Apr 2002 00:21:35 -0000      1.7
***************
*** 243,248 ****
                function initialize_vars($name)
                {
!                       $var = 
($GLOBALS['HTTP_GET_VARS'][$name]?$GLOBALS['HTTP_GET_VARS'][$name]:'');
!                       $var = 
($GLOBALS['HTTP_POST_VARS'][$name]?$GLOBALS['HTTP_POST_VARS'][$name]:$var);
                        if($this->debug)
                        {
--- 243,247 ----
                function initialize_vars($name)
                {
!                       $var = get_var($name,Array('GET','POST'));
                        if($this->debug)
                        {

Index: class.uiphpwebhosting.inc.php
===================================================================
RCS file: 
/cvsroot/phpgroupware/phpwebhosting/inc/class.uiphpwebhosting.inc.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -r1.7 -r1.8
*** class.uiphpwebhosting.inc.php       14 Feb 2002 02:16:14 -0000      1.7
--- class.uiphpwebhosting.inc.php       30 Apr 2002 00:21:35 -0000      1.8
***************
*** 299,303 ****
                        return $this->link(
                                Array(
!                                       'menuaction'    => 
$GLOBALS['HTTP_GET_VARS']['menuaction'],
                                        'path'  => $this->bo->path,
                                        'show_upload_boxes'     => $number
--- 299,303 ----
                        return $this->link(
                                Array(
!                                       'menuaction'    => 
get_var('menuaction',Array('GET')),
                                        'path'  => $this->bo->path,
                                        'show_upload_boxes'     => $number




reply via email to

[Prev in Thread] Current Thread [Next in Thread]