Skip to:
Content

bbPress.org


Ignore:
Timestamp:
08/11/2015 08:17:53 PM (11 years ago)
Author:
johnjamesjacoby
Message:

Sniffer: Whitespace around variables in arrays.

File:
1 edited

Legend:

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

    r5798 r5908  
    796796
    797797                do {
    798                         $value = ord( $input[$i++] );
    799                         $output .= $itoa64[$value & 0x3f];
     798                        $value = ord( $input[ $i++ ] );
     799                        $output .= $itoa64[ $value & 0x3f ];
    800800
    801801                        if ($i < $count) {
    802                                 $value |= ord( $input[$i] ) << 8;
     802                                $value |= ord( $input[ $i ] ) << 8;
    803803                        }
    804804
     
    810810
    811811                        if ( $i < $count ) {
    812                                 $value |= ord( $input[$i] ) << 16;
     812                                $value |= ord( $input[ $i ] ) << 16;
    813813                        }
    814814
Note: See TracChangeset for help on using the changeset viewer.