phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] news_admin/inc class.ui.inc.php,1.2


From: powerstat
Subject: [Phpgroupware-cvs] news_admin/inc class.ui.inc.php,1.2
Date: Wed, 4 May 2005 15:47:00 +0200

Update of news_admin/inc

Modified Files:
     Branch: MAIN
            class.ui.inc.php lines: +3 -3

Log Message:
Fixes deprecated (since 2003) call by reference functions calls. All function 
declarations were already correct.

====================================================
Index: news_admin/inc/class.ui.inc.php
diff -u news_admin/inc/class.ui.inc.php:1.1 news_admin/inc/class.ui.inc.php:1.2
--- news_admin/inc/class.ui.inc.php:1.1 Tue Jun  3 03:15:12 2003
+++ news_admin/inc/class.ui.inc.php     Wed May  4 13:47:48 2005
@@ -486,7 +486,7 @@

                        while ((list(,$item) = @each($items)))
                        {
-                               
$this->nextmatchs->template_alternate_row_color(&$this->template);
+                               
$this->nextmatchs->template_alternate_row_color($this->template);
                                
$this->template->set_var('row_date',$GLOBALS['phpgw']->common->show_date($item['date']));
                                if (strlen($item['news_subject']) > 40)
                                {
@@ -508,7 +508,7 @@

                        if (! $total)
                        {
-                               
$this->nextmatchs->template_alternate_row_color(&$this->template);
+                               
$this->nextmatchs->template_alternate_row_color($this->template);
                                $this->template->set_var('row_message',lang('No 
entries found'));
                                $this->template->parse('rows','row_empty',True);
                        }






reply via email to

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