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.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/workflow/inc/class.so_external_applications.inc.php

    r7673 r7712  
    148148 
    149149                $output = $result->GetArray(-1); 
    150         $output_count = count($output); 
    151                 for ($i = 0; $i < $output_count; ++$i) 
     150 
     151                for ($i = 0; $i < count($output); ++$i) 
    152152                        for ($j = 0; $j < $result->_numOfFields; ++$j) 
    153153                                unset($output[$i][$j]); 
     
    171171 
    172172                $output = $result->GetArray(-1); 
    173         $output_count = count($output); 
    174                 for ($i = 0; $i < $output_count; ++$i) 
     173 
     174                for ($i = 0; $i < count($output); ++$i) 
    175175                        for ($j = 0; $j < $result->_numOfFields; ++$j) 
    176176                                unset($output[$i][$j]); 
Note: See TracChangeset for help on using the changeset viewer.