Skip to:
Content

bbPress.org

Changeset 7014


Ignore:
Timestamp:
12/10/2019 07:36:38 PM (6 years ago)
Author:
johnjamesjacoby
Message:

Converters: PHP7.4 code compatibility.

This commit uses the correct array syntax in the Invision converter, to avoid fatal erroring in PHP7.4+.

Props jrf. Fixes #3299. For 2.6.3, branches/2.6.

File:
1 edited

Legend:

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

    r7007 r7014  
    543543        $output = '';
    544544        for ( $i = 0; $i < strlen( $input ); $i++ ) {
    545             $j = ord( $input{$i} );
     545            $j = ord( $input[$i] );
    546546            if ( ( $j >= 65 && $j <= 90 )
    547547                || ( $j >= 97 && $j <= 122 )
    548548                || ( $j >= 48 && $j <= 57 ) ) {
    549                 $output .= $input{$i};
     549                $output .= $input[$i];
    550550            } else {
    551                 $output .= '&#' . ord( $input{$i} ) . ';';
     551                $output .= '&#' . ord( $input[$i] ) . ';';
    552552            }
    553553        }
Note: See TracChangeset for help on using the changeset viewer.