Ignore:
Timestamp:
12/14/12 14:30:35 (11 years ago)
Author:
douglasz
Message:

Ticket #3236 - Melhorias de performance no codigo do Expresso.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/admin/inc/class.solog.inc.php

    r2 r7655  
    4040                                /* fields from phpgw_log table */ 
    4141                                $clist = $this->db->metadata('phpgw_log'); 
    42                                 for ($i=0; $i<count($clist); $i++) 
     42                                for ($i=0; $i<count($clist); ++$i) 
    4343                                { 
    4444                                        $name =  $clist[$i]['name']; 
     
    4848                                /* fields from phpgw_log_msg table */ 
    4949                                $clist = $this->db->metadata('phpgw_log_msg'); 
    50                                 for ($i=0; $i<count($clist); $i++) 
     50                                for ($i=0; $i<count($clist); ++$i) 
    5151                                { 
    5252                                        $name =  $clist[$i]['name']; 
     
    6666                                /* Enhance with Columns for phpgw_accounts */ 
    6767                                $clist = $this->db->metadata('phpgw_accounts'); 
    68                                 for ($i=0; $i<count($clist); $i++) 
     68                                for ($i=0; $i<count($clist); ++$i) 
    6969                                { 
    7070                                        $name =  $clist[$i]['name']; 
Note: See TracChangeset for help on using the changeset viewer.