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/workflow/inc/class.so_external_applications.inc.php

    r3167 r7655  
    148148 
    149149                $output = $result->GetArray(-1); 
    150                 for ($i = 0; $i < count($output); $i++) 
    151                         for ($j = 0; $j < $result->_numOfFields; $j++) 
     150                for ($i = 0; $i < count($output); ++$i) 
     151                        for ($j = 0; $j < $result->_numOfFields; ++$j) 
    152152                                unset($output[$i][$j]); 
    153153 
     
    170170 
    171171                $output = $result->GetArray(-1); 
    172                 for ($i = 0; $i < count($output); $i++) 
    173                         for ($j = 0; $j < $result->_numOfFields; $j++) 
     172                for ($i = 0; $i < count($output); ++$i) 
     173                        for ($j = 0; $j < $result->_numOfFields; ++$j) 
    174174                                unset($output[$i][$j]); 
    175175 
Note: See TracChangeset for help on using the changeset viewer.