phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] forum/inc class.uiforum.inc.php,1.11


From: powerstat
Subject: [Phpgroupware-cvs] forum/inc class.uiforum.inc.php,1.11
Date: Wed, 4 May 2005 15:46:00 +0200

Update of forum/inc

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

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

====================================================
Index: forum/inc/class.uiforum.inc.php
diff -u forum/inc/class.uiforum.inc.php:1.10 
forum/inc/class.uiforum.inc.php:1.11
--- forum/inc/class.uiforum.inc.php:1.10        Mon May 27 01:49:04 2002
+++ forum/inc/class.uiforum.inc.php     Wed May  4 13:46:33 2005
@@ -150,7 +150,7 @@

                        if(!$forum_info)
                        {
-                               
$GLOBALS['phpgw']->nextmatchs->template_alternate_row_color(&$this->template);
+                               
$GLOBALS['phpgw']->nextmatchs->template_alternate_row_color($this->template);
                                
$this->template->set_var('lang_no_forums',lang('There are no forums in this 
category'));
                                $this->template->fp('rows','row_empty');
                        }
@@ -158,7 +158,7 @@
                        {
                                while (list($key,$forum) = each($forum_info))
                                {
-                                       
$GLOBALS['phpgw']->nextmatchs->template_alternate_row_color(&$this->template);
+                                       
$GLOBALS['phpgw']->nextmatchs->template_alternate_row_color($this->template);
                                        $this->template->set_var(
                                                Array(
                                                        'NAME'         => 
$forum['name'],






reply via email to

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