Coding Standards: Correct two coding standards issues introduced in [48277] and [48334].

See #50504, #50550.

git-svn-id: https://develop.svn.wordpress.org/trunk@48345 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
Jonathan Desrosiers 2020-07-06 19:21:33 +00:00
parent bf7ba4dc5b
commit b84d8e4d09
2 changed files with 3 additions and 3 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'
);
}