phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] filemanager index.php,1.30.2.9.2.4,1.30.2.9.2.5


From: Dave Hall <address@hidden>
Subject: [Phpgroupware-cvs] filemanager index.php,1.30.2.9.2.4,1.30.2.9.2.5
Date: Wed, 26 Nov 2003 20:29:04 +0000

Update of /cvsroot/phpgroupware/filemanager
In directory subversions:/tmp/cvs-serv3278

Modified Files:
      Tag: Version-0_9_16-branch
        index.php 
Log Message:
fix for bug #6775


Index: index.php
===================================================================
RCS file: /cvsroot/phpgroupware/filemanager/index.php,v
retrieving revision 1.30.2.9.2.4
retrieving revision 1.30.2.9.2.5
diff -C2 -d -r1.30.2.9.2.4 -r1.30.2.9.2.5
*** index.php   9 Sep 2003 06:42:08 -0000       1.30.2.9.2.4
--- index.php   26 Nov 2003 20:29:02 -0000      1.30.2.9.2.5
***************
*** 15,19 ****
  $phpwh_debug = 0;
  
! @reset ($GLOBALS['HTTP_POST_VARS']);
  while (list ($name,) = @each ($_POST))
  {
--- 15,19 ----
  $phpwh_debug = 0;
  
! @reset ($_POST);
  while (list ($name,) = @each ($_POST))
  {
***************
*** 21,28 ****
  }
  
! @reset ($GLOBALS['HTTP_GET_VARS']);
! while (list ($name,) = @each ($GLOBALS['HTTP_GET_VARS']))
  {
!       $$name = $GLOBALS['HTTP_GET_VARS'][$name];
  }
  
--- 21,28 ----
  }
  
! @reset ($_GET);
! while (list ($name,) = @each ($_GET))
  {
!       $$name = $_GET[$name];
  }
  





reply via email to

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