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/filemanager/inc/class.uifilemanager.inc.php

    r5327 r7655  
    544544                $this->readFilesInfo(); 
    545545 
    546                 for ($i = 0; $i != $this->numoffiles; $i++) 
     546                for ($i = 0; $i != $this->numoffiles; ++$i) 
    547547                { 
    548548                        $files = $this->files_array[$i]; 
     
    958958                        # We need to include all of the fileman entries for each file's form, 
    959959                        # so we loop through again 
    960                         for ($i = 0; $i != $this->numoffiles; $i++) { 
     960                        for ($i = 0; $i != $this->numoffiles; ++$i) { 
    961961                                if ($this->filename) 
    962962                                        $value = 'value="' . $this->filename . '"'; 
     
    12111211                                reset($this->files_array); 
    12121212                                $this->readFilesInfo(); 
    1213                                 for ($i = 0; $i < count($this->files_array); $i++) { 
     1213                                for ($i = 0; $i < count($this->files_array); ++$i) { 
    12141214                                        $comment = strtoupper($this->files_array[$i]['comment']); 
    12151215                                        $name = strtoupper($this->files_array[$i]['name']); 
Note: See TracChangeset for help on using the changeset viewer.