Coding Standards: Apply changes from running composer format.
Follow up to [60684], [60743]. See #63840, #63863. Built from https://develop.svn.wordpress.org/trunk@60764 git-svn-id: http://core.svn.wordpress.org/trunk@60100 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
@@ -490,8 +490,8 @@ class WP_Block {
|
||||
}
|
||||
|
||||
$this->set_bookmark( '_wp_block_bindings_tag_closer' );
|
||||
$tag_closer = $this->bookmarks['__wp_block_bindings_tag_closer'];
|
||||
$end = $tag_closer->start;
|
||||
$tag_closer = $this->bookmarks['__wp_block_bindings_tag_closer'];
|
||||
$end = $tag_closer->start;
|
||||
$this->release_bookmark( '_wp_block_bindings_tag_closer' );
|
||||
|
||||
$this->lexical_updates[] = new WP_HTML_Text_Replacement(
|
||||
|
||||
@@ -79,7 +79,7 @@ function _wp_is_valid_utf8_fallback( string $bytes ): bool {
|
||||
// Valid two-byte code points.
|
||||
|
||||
if ( $b1 >= 0xC2 && $b1 <= 0xDF && $b2 >= 0x80 && $b2 <= 0xBF ) {
|
||||
$i++;
|
||||
++$i;
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
@@ -16,7 +16,7 @@
|
||||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '6.9-alpha-60763';
|
||||
$wp_version = '6.9-alpha-60764';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
||||
Reference in New Issue
Block a user