Changeset 7712 for trunk/phpgwapi


Ignore:
Timestamp:
01/08/13 10:35:42 (11 years ago)
Author:
douglasz
Message:

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

Location:
trunk/phpgwapi/inc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/phpgwapi/inc/class.categories.inc.php

    r7673 r7712  
    422422                        if($self) 
    423423                        { 
    424                 $cats_count = count($cats); 
    425                                 for ($i=0;$i<$cats_count;++$i) 
     424                                for ($i=0;$i<count($cats);++$i) 
    426425                                { 
    427426                                        if ($cats[$i]['id'] == $self) 
  • trunk/phpgwapi/inc/class.contacts_ldap.inc.php

    r7673 r7712  
    328328                                { 
    329329                                        $i=0; 
    330                     $filterarray_count = count($filterarray); 
    331                                         for($i=0;$i<$filterarray_count;++$i) 
     330                                        for($i=0;$i<count($filterarray);++$i) 
    332331                                        { 
    333332                                                list($name,$value) = preg_split('/=/',$filterarray[$i]); 
Note: See TracChangeset for help on using the changeset viewer.