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/library/ckeditor/plugins/aspell/spellerpages/server-scripts/spellchecker.php

    r5081 r7655  
    8282        # open temp file, add the submitted text. 
    8383        if( $fh = fopen( $tempfile, 'w' )) { 
    84                 for( $i = 0; $i < count( $textinputs ); $i++ ) { 
     84                for( $i = 0; $i < count( $textinputs ); ++$i ) { 
    8585                        $text = urldecode( $textinputs[$i] ); 
    8686                        $text = html_entity_decode ($text , ENT_QUOTES , 'UTF-8'  ); 
     
    122122                                        } 
    123123                                        print_suggs_elem( $suggs, $index, $text_input_index ); 
    124                                         $index++; 
     124                                        ++$index; 
    125125                                } elseif( $chardesc == '*' ) { 
    126                                         $text_input_index++; 
     126                                        ++$text_input_index; 
    127127                                        print_textindex_decl( $text_input_index ); 
    128128                                        $index = 0; 
Note: See TracChangeset for help on using the changeset viewer.