Skip to:
Content

bbPress.org


Ignore:
Timestamp:
12/15/2019 11:52:57 AM (7 years ago)
Author:
netweb
Message:

Build Tools: Improve PHPCS setup.

Props jrf.
See #3294.
For trunk.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/converters/Invision.php

    r7014 r7050  
    542542        private function to_char( $input ) {
    543543                $output = '';
    544                 for ( $i = 0; $i < strlen( $input ); $i++ ) {
     544                $length = strlen( $input );
     545                for ( $i = 0; $i < $length; $i++ ) {
    545546                        $j = ord( $input[$i] );
    546547                        if ( ( $j >= 65 && $j <= 90 )
Note: See TracChangeset for help on using the changeset viewer.