phpgroupware-cvs
[Top][All Lists]
Advanced

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

[Phpgroupware-cvs] CVS: phpgwapi/inc class.categories.inc.php,1.74.2.20


From: Joseph Engo <address@hidden>
Subject: [Phpgroupware-cvs] CVS: phpgwapi/inc class.categories.inc.php,1.74.2.20,1.74.2.20.2.1
Date: Tue, 29 Apr 2003 23:28:55 -0400

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

Modified Files:
      Tag: Version-0_9_16-branch
        class.categories.inc.php 
Log Message:
Added strict return types for XML-RPC


Index: class.categories.inc.php
===================================================================
RCS file: /cvsroot/phpgroupware/phpgwapi/inc/class.categories.inc.php,v
retrieving revision 1.74.2.20
retrieving revision 1.74.2.20.2.1
diff -C2 -r1.74.2.20 -r1.74.2.20.2.1
*** class.categories.inc.php    22 Mar 2003 09:33:11 -0000      1.74.2.20
--- class.categories.inc.php    30 Apr 2003 03:28:52 -0000      1.74.2.20.2.1
***************
*** 281,291 ****
                        while ($this->db->next_record())
                        {
!                               $cats[$i]['id']          = 
$this->db->f('cat_id');
!                               $cats[$i]['owner']       = 
$this->db->f('cat_owner');
                                $cats[$i]['access']      = 
$this->db->f('cat_access');
                                $cats[$i]['app_name']    = 
$this->db->f('cat_appname');
!                               $cats[$i]['main']        = 
$this->db->f('cat_main');
!                               $cats[$i]['level']       = 
$this->db->f('cat_level');
!                               $cats[$i]['parent']      = 
$this->db->f('cat_parent');
                                $cats[$i]['name']        = 
$this->db->f('cat_name');
                                $cats[$i]['description'] = 
$this->db->f('cat_description');
--- 281,291 ----
                        while ($this->db->next_record())
                        {
!                               $cats[$i]['id']          = 
(int)$this->db->f('cat_id');
!                               $cats[$i]['owner']       = 
(int)$this->db->f('cat_owner');
                                $cats[$i]['access']      = 
$this->db->f('cat_access');
                                $cats[$i]['app_name']    = 
$this->db->f('cat_appname');
!                               $cats[$i]['main']        = 
(int)$this->db->f('cat_main');
!                               $cats[$i]['level']       = 
(int)$this->db->f('cat_level');
!                               $cats[$i]['parent']      = 
(int)$this->db->f('cat_parent');
                                $cats[$i]['name']        = 
$this->db->f('cat_name');
                                $cats[$i]['description'] = 
$this->db->f('cat_description');
***************
*** 315,325 ****
                                while ($this->db->next_record())
                                {
!                                       $subcats[$j]['id']          = 
$this->db->f('cat_id');
!                                       $subcats[$j]['owner']       = 
$this->db->f('cat_owner');
                                        $subcats[$j]['access']      = 
$this->db->f('cat_access');
                                        $subcats[$j]['app_name']    = 
$this->db->f('cat_appname');
!                                       $subcats[$j]['main']        = 
$this->db->f('cat_main');
!                                       $subcats[$j]['level']       = 
$this->db->f('cat_level');
!                                       $subcats[$j]['parent']      = 
$this->db->f('cat_parent');
                                        $subcats[$j]['name']        = 
$this->db->f('cat_name');
                                        $subcats[$j]['description'] = 
$this->db->f('cat_description');
--- 315,325 ----
                                while ($this->db->next_record())
                                {
!                                       $subcats[$j]['id']          = 
(int)$this->db->f('cat_id');
!                                       $subcats[$j]['owner']       = 
(int)$this->db->f('cat_owner');
                                        $subcats[$j]['access']      = 
$this->db->f('cat_access');
                                        $subcats[$j]['app_name']    = 
$this->db->f('cat_appname');
!                                       $subcats[$j]['main']        = 
(int)$this->db->f('cat_main');
!                                       $subcats[$j]['level']       = 
(int)$this->db->f('cat_level');
!                                       $subcats[$j]['parent']      = 
(int)$this->db->f('cat_parent');
                                        $subcats[$j]['name']        = 
$this->db->f('cat_name');
                                        $subcats[$j]['description'] = 
$this->db->f('cat_description');





reply via email to

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