phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: forum/inc class.boforum.inc.php,1.1.2.2,1.1.2.3


From: Mark A Peters <address@hidden>
Subject: [Phpgroupware-cvs] CVS: forum/inc class.boforum.inc.php,1.1.2.2,1.1.2.3 class.soforum.inc.php,1.1.2.1,1.1.2.2
Date: Sun, 20 Jan 2002 07:07:27 -0500

Update of /cvsroot/phpgroupware/forum/inc
In directory subversions:/tmp/cvs-serv18856/forum/inc

Modified Files:
      Tag: Version-0_9_14-branch
        class.boforum.inc.php class.soforum.inc.php 
Log Message:
A few more fixes.

Index: class.boforum.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/forum/inc/class.boforum.inc.php,v
retrieving revision 1.1.2.2
retrieving revision 1.1.2.3
diff -C2 -r1.1.2.2 -r1.1.2.3
*** class.boforum.inc.php       20 Jan 2002 04:40:28 -0000      1.1.2.2
--- class.boforum.inc.php       20 Jan 2002 12:07:24 -0000      1.1.2.3
***************
*** 66,70 ****
                        {
                                if($this->debug) { echo '<br>Save:'; 
_debug_array($data); }
!                               
$GLOBALS['phpgw']->session->appsession('session_data','calendar',$data);
                        }
                }
--- 66,70 ----
                        {
                                if($this->debug) { echo '<br>Save:'; 
_debug_array($data); }
!                               
$GLOBALS['phpgw']->session->appsession('session_data','forum',$data);
                        }
                }
***************
*** 77,82 ****
                        $this->view     = $data['view'];
                        $this->location = $data['location'];
!                       $this->cat_id   = intval($data['cat_id']);
!                       $this->forum_id = intval($data['forum_id']);
                }
                
--- 77,82 ----
                        $this->view     = $data['view'];
                        $this->location = $data['location'];
!                       $this->cat_id   = $data['cat_id'];
!                       $this->forum_id = $data['forum_id'];
                }
                

Index: class.soforum.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/forum/inc/class.soforum.inc.php,v
retrieving revision 1.1.2.1
retrieving revision 1.1.2.2
diff -C2 -r1.1.2.1 -r1.1.2.2
*** class.soforum.inc.php       20 Jan 2002 03:36:03 -0000      1.1.2.1
--- class.soforum.inc.php       20 Jan 2002 12:07:24 -0000      1.1.2.2
***************
*** 184,188 ****
                        $db2->query('select thread from phpgw_forum_threads 
where id='.$msg_id,__LINE__,__FILE__);
                        $db2->next_record();
!                       $this->db->query('select * from phpgw_forum_threads 
where id>='.$msg_id.' and cat_id='.$cat_id.' and for_id='.$forum_id.' and 
thread='.$db2->f('thread').' order by parent,id',__LINE__,__FILE__);
                        if(!$this->db->num_rows())
                        {
--- 184,188 ----
                        $db2->query('select thread from phpgw_forum_threads 
where id='.$msg_id,__LINE__,__FILE__);
                        $db2->next_record();
!                       $this->db->query('select * from phpgw_forum_threads 
where id >= '.$msg_id.' and cat_id='.$cat_id.' and for_id='.$forum_id.' and 
thread='.$db2->f('thread').' order by parent,id',__LINE__,__FILE__);
                        if(!$this->db->num_rows())
                        {




reply via email to

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