Coding Standards: Fix a few newly introduced WPCS issues.
Follow-up to [56515], [56557], [56560]. Props jrf. See #59161, #58831. Built from https://develop.svn.wordpress.org/trunk@56598 git-svn-id: http://core.svn.wordpress.org/trunk@56110 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
0223bd9ad6
commit
3546f04e16
|
@ -872,7 +872,7 @@ function serialize_blocks( $blocks, $callback = null ) {
|
||||||
$result = '';
|
$result = '';
|
||||||
foreach ( $blocks as $block ) {
|
foreach ( $blocks as $block ) {
|
||||||
$result .= serialize_block( $block, $callback );
|
$result .= serialize_block( $block, $callback );
|
||||||
};
|
}
|
||||||
return $result;
|
return $result;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.4-alpha-56597';
|
$wp_version = '6.4-alpha-56598';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue