phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] bookkeeping/inc class.uideliveries.inc.php, 1.4 class


From: powerstat
Subject: [Phpgroupware-cvs] bookkeeping/inc class.uideliveries.inc.php, 1.4 class.uibilling.inc.php, 1.4
Date: Thu, 5 May 2005 16:31:00 +0200

Update of bookkeeping/inc

Modified Files:
     Branch: MAIN
            class.uideliveries.inc.php lines: +6 -6
            class.uibilling.inc.php lines: +6 -6

Log Message:
Fixes deprecated (since 2003) call by reference functions calls.

====================================================
Index: bookkeeping/inc/class.uideliveries.inc.php
diff -u bookkeeping/inc/class.uideliveries.inc.php:1.3 
bookkeeping/inc/class.uideliveries.inc.php:1.4
--- bookkeeping/inc/class.uideliveries.inc.php:1.3      Tue Dec 23 16:34:45 2003
+++ bookkeeping/inc/class.uideliveries.inc.php  Thu May  5 14:31:31 2005
@@ -253,7 +253,7 @@

             for ($i=0;$i<count($pro);$i++)
             {
-                               
$this->nextmatchs->template_alternate_row_color(&$GLOBALS['phpgw']->template);
+                               
$this->nextmatchs->template_alternate_row_color($GLOBALS['phpgw']->template);
                                $edate = $pro[$i]['edate'];
                                if ($edate == 0)
                                {
@@ -488,7 +488,7 @@
                        {
                                while (list($null,$note) = each($hours))
                                {
-                                       
$this->nextmatchs->template_alternate_row_color(&$GLOBALS['phpgw']->template);
+                                       
$this->nextmatchs->template_alternate_row_color($GLOBALS['phpgw']->template);

                                        $select = '<input type="checkbox" 
name="select[' . $note['hours_id'] . ']" value="True" checked>';

@@ -557,7 +557,7 @@
                                {
                                        while (list($null,$note) = each($hours))
                                        {
-                                               
$this->nextmatchs->template_alternate_row_color(&$GLOBALS['phpgw']->template);
+                                               
$this->nextmatchs->template_alternate_row_color($GLOBALS['phpgw']->template);

                                                $select = '<input 
type="checkbox" name="select[' . $note['hours_id'] . ']" value="True">';

@@ -706,7 +706,7 @@
                        {
                                while (list($null,$note) = each($del))
                                {
-                                       
$this->nextmatchs->template_alternate_row_color(&$GLOBALS['phpgw']->template);
+                                       
$this->nextmatchs->template_alternate_row_color($GLOBALS['phpgw']->template);
                                        $title = 
$GLOBALS['phpgw']->strip_html($note['title']);
                                        if (! $title) $title  = '&nbsp;';


====================================================
Index: bookkeeping/inc/class.uibilling.inc.php
diff -u bookkeeping/inc/class.uibilling.inc.php:1.3 
bookkeeping/inc/class.uibilling.inc.php:1.4
--- bookkeeping/inc/class.uibilling.inc.php:1.3 Tue Dec 23 16:34:45 2003
+++ bookkeeping/inc/class.uibilling.inc.php     Thu May  5 14:31:31 2005
@@ -264,7 +264,7 @@

             for ($i=0;$i<count($pro);$i++)
             {
-                               
$this->nextmatchs->template_alternate_row_color(&$GLOBALS['phpgw']->template);
+                               
$this->nextmatchs->template_alternate_row_color($GLOBALS['phpgw']->template);
                                $edate = $pro[$i]['edate'];
                                if ($edate == 0)
                                {
@@ -418,7 +418,7 @@
                        {
                                while (list($null,$inv) = each($bill))
                                {
-                                       
$this->nextmatchs->template_alternate_row_color(&$GLOBALS['phpgw']->template);
+                                       
$this->nextmatchs->template_alternate_row_color($GLOBALS['phpgw']->template);
                                        $title = 
$GLOBALS['phpgw']->strip_html($inv['title']);
                                        if (! $title) $title = '&nbsp;';

@@ -611,7 +611,7 @@
                        {
                                while (list($null,$inv) = each($hours))
                                {
-                                       
$this->nextmatchs->template_alternate_row_color(&$GLOBALS['phpgw']->template);
+                                       
$this->nextmatchs->template_alternate_row_color($GLOBALS['phpgw']->template);

                                        $select = '<input type="checkbox" 
name="select[' . $inv['hours_id'] . ']" value="True" checked>';

@@ -691,7 +691,7 @@
                                {
                                        while (list($null,$inv) = each($hours))
                                        {
-                                               
$this->nextmatchs->template_alternate_row_color(&$GLOBALS['phpgw']->template);
+                                               
$this->nextmatchs->template_alternate_row_color($GLOBALS['phpgw']->template);

                                                $select = '<input 
type="checkbox" name="select[' . $inv['hours_id'] . ']" value="True">';







reply via email to

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