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:
parent
bf7ba4dc5b
commit
b84d8e4d09
@ -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
|
||||
|
@ -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'
|
||||
);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user