Ignore:
Timestamp:
12/18/12 16:15:29 (11 years ago)
Author:
douglasz
Message:

Ticket #3236 - Correcoes para Performance: Function Within Loop Declaration.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/library/ckeditor/plugins/aspell/spellerpages/server-scripts/spellchecker.php

    r7655 r7673  
    8282        # open temp file, add the submitted text. 
    8383        if( $fh = fopen( $tempfile, 'w' )) { 
    84                 for( $i = 0; $i < count( $textinputs ); ++$i ) { 
     84        $textinputs_count = count( $textinputs ); 
     85                for( $i = 0; $i < $textinputs_count; ++$i ) { 
    8586                        $text = urldecode( $textinputs[$i] ); 
    8687                        $text = html_entity_decode ($text , ENT_QUOTES , 'UTF-8'  ); 
Note: See TracChangeset for help on using the changeset viewer.