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:
desrosj 2020-07-06 19:23:02 +00:00
parent 77af0e5982
commit bc7de32645
3 changed files with 4 additions and 4 deletions

View File

@ -932,8 +932,8 @@ function admin_color_scheme_picker( $user_id ) {
$_wp_admin_css_colors = array_filter(
array_merge(
array(
'fresh' => '',
'light' => '',
'fresh' => '',
'light' => '',
'modern' => '',
),
$_wp_admin_css_colors

View File

@ -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'
);
}

View File

@ -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.