Coding Standards: Correct two coding standards issues introduced in [48277] and [48334].
See #50504, #50550. Built from https://develop.svn.wordpress.org/trunk@48345 git-svn-id: http://core.svn.wordpress.org/trunk@48114 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
77af0e5982
commit
bc7de32645
|
@ -21,7 +21,7 @@ $core_block_patterns = array(
|
|||
foreach ( $core_block_patterns as $core_block_pattern ) {
|
||||
register_block_pattern(
|
||||
'core/' . $core_block_pattern,
|
||||
require( __DIR__ . '/block-patterns/' . $core_block_pattern . '.php' )
|
||||
require __DIR__ . '/block-patterns/' . $core_block_pattern . '.php'
|
||||
);
|
||||
}
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@
|
|||
*
|
||||
* @global string $wp_version
|
||||
*/
|
||||
$wp_version = '5.5-alpha-48344';
|
||||
$wp_version = '5.5-alpha-48345';
|
||||
|
||||
/**
|
||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||
|
|
Loading…
Reference in New Issue