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/upload.php

    r5509 r7655  
    8989{ 
    9090        $command = "nice -n19 ".$current_config['filemanager_antivirus_command']; 
    91         for($i = 0; $i != $show_upload_boxes; $i++) 
     91        for($i = 0; $i != $show_upload_boxes; ++$i) 
    9292        { 
    9393                $command .= " ".$_FILES['upload_file']['tmp_name'][$i]; 
     
    108108{ 
    109109        $return = array( ); 
    110         for( $i = 0; $i != $show_upload_boxes; $i++) 
     110        for( $i = 0; $i != $show_upload_boxes; ++$i) 
    111111        { 
    112112                if ( $_FILES['upload_file']['error'][$i] !== 0 ) 
Note: See TracChangeset for help on using the changeset viewer.