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/phpgwapi/inc/class.setup.inc.php

    r3626 r7655  
    710710                        $less = 0; 
    711711 
    712                         for($i=0;$i<count($testa);$i++) 
     712                        for($i=0;$i<count($testa);++$i) 
    713713                        { 
    714714                                if($DEBUG) { echo'<br>Checking if '. (int)$testa[$i] . ' is less than ' . (int)$testb[$i] . ' ...'; } 
     
    716716                                { 
    717717                                        if ($DEBUG) { echo ' yes.'; } 
    718                                         $less++; 
     718                                        ++$less; 
    719719                                        if($i<3) 
    720720                                        { 
     
    792792                        $less = 0; 
    793793 
    794                         for($i=0;$i<count($testa);$i++) 
     794                        for($i=0;$i<count($testa);++$i) 
    795795                        { 
    796796                                if($DEBUG) { echo'<br>Checking if '. (int)$testa[$i] . ' is more than ' . (int)$testb[$i] . ' ...'; } 
     
    798798                                { 
    799799                                        if($DEBUG) { echo ' yes.'; } 
    800                                         $less++; 
     800                                        ++$less; 
    801801                                        if($i<3) 
    802802                                        { 
Note: See TracChangeset for help on using the changeset viewer.