phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: phpgwapi/inc class.contacts_shared.inc.php,1.9.


From: Dave Hall <address@hidden>
Subject: [Phpgroupware-cvs] CVS: phpgwapi/inc class.contacts_shared.inc.php,1.9.2.3,1.9.2.4
Date: Fri, 04 Jul 2003 08:33:56 -0400

Update of /cvsroot/phpgroupware/phpgwapi/inc
In directory subversions:/tmp/cvs-serv1645

Modified Files:
      Tag: Version-0_9_14-branch
        class.contacts_shared.inc.php 
Log Message:
php3 compliance fix

Index: class.contacts_shared.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/inc/class.contacts_shared.inc.php,v
retrieving revision 1.9.2.3
retrieving revision 1.9.2.4
diff -C2 -r1.9.2.3 -r1.9.2.4
*** class.contacts_shared.inc.php       2 Jul 2003 00:03:35 -0000       1.9.2.3
--- class.contacts_shared.inc.php       4 Jul 2003 12:33:53 -0000       1.9.2.4
***************
*** 305,309 ****
  
                        list($address) = $this->read_single_entry($id,$fields);
!                       foreach($address as $k => $val)
                        {
                                $address[$k] = 
$GLOBALS['phpgw']->strip_html($val);
--- 305,309 ----
  
                        list($address) = $this->read_single_entry($id,$fields);
!                       while(list($k,$val) = each($address))
                        {
                                $address[$k] = 
$GLOBALS['phpgw']->strip_html($val);
***************
*** 411,415 ****
  
                        list($address) = $this->read_single_entry($id,$fields);
!                       foreach($address as $k => $val)
                        {
                                $address[$k] = 
$GLOBALS['phpgw']->strip_html($val);
--- 411,415 ----
  
                        list($address) = $this->read_single_entry($id,$fields);
!                       while(list($k,$val) = each($address))
                        {
                                $address[$k] = 
$GLOBALS['phpgw']->strip_html($val);
***************
*** 522,526 ****
  
                        list($address) = $this->read_single_entry($id,$fields);
!                       foreach($address as $k => $val)
                        {
                                $address[$k] = 
$GLOBALS['phpgw']->strip_html($val);
--- 522,526 ----
  
                        list($address) = $this->read_single_entry($id,$fields);
!                       while(list($k,$val) = each($address))
                        {
                                $address[$k] = 
$GLOBALS['phpgw']->strip_html($val);





reply via email to

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