Make WordPress Core


Ignore:
Timestamp:
10/21/2025 02:00:33 PM (4 months ago)
Author:
jorbin
Message:

Coding Standards: Fix blank spaces.

Nice to meet you, where you been?

See #63168.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/compat-utf8.php

    r61005 r61036  
    536536
    537537        // All convertible code points are not greater than U+FF.
    538         $byte2 = ord( $utf8_text[ $at + 1 ] );
     538        $byte2      = ord( $utf8_text[ $at + 1 ] );
    539539        $code_point = ( ( $byte1 & 0x1F ) << 6 ) | ( ( $byte2 & 0x3F ) );
    540540        if ( $code_point > 0xFF ) {
Note: See TracChangeset for help on using the changeset viewer.