Changeset 5908 for trunk/src/includes/admin/converters/phpBB.php
- Timestamp:
- 08/11/2015 08:17:53 PM (11 years ago)
- File:
-
- 1 edited
-
trunk/src/includes/admin/converters/phpBB.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/includes/admin/converters/phpBB.php
r5798 r5908 796 796 797 797 do { 798 $value = ord( $input[ $i++] );799 $output .= $itoa64[ $value & 0x3f];798 $value = ord( $input[ $i++ ] ); 799 $output .= $itoa64[ $value & 0x3f ]; 800 800 801 801 if ($i < $count) { 802 $value |= ord( $input[ $i] ) << 8;802 $value |= ord( $input[ $i ] ) << 8; 803 803 } 804 804 … … 810 810 811 811 if ( $i < $count ) { 812 $value |= ord( $input[ $i] ) << 16;812 $value |= ord( $input[ $i ] ) << 16; 813 813 } 814 814
Note: See TracChangeset
for help on using the changeset viewer.