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

    r3894 r7655  
    396396                                $rtry = $dir . $nameWithoutExtension . '.[' . $cnt . ']' . $ext; 
    397397                                while (file_exists($rtry)) { 
    398                                         $cnt++; 
     398                                        ++$cnt; 
    399399                                        $rtry = $dir . $nameWithoutExtension . '.[' . $cnt . ']' . $ext; 
    400400                                } 
     
    618618                                } 
    619619                                unlink($tmpname); 
    620                                 $cnt++; 
     620                                ++$cnt; 
    621621                                continue; 
    622622                        } 
     
    691691                                array_push($this->files, $files_data); 
    692692                        } 
    693                         $cnt++; 
     693                        ++$cnt; 
    694694                } 
    695695 
Note: See TracChangeset for help on using the changeset viewer.