Skip to content

Commit

Permalink
Coding Standards: Correct two coding standards issues introduced in […
Browse files Browse the repository at this point in the history
…48277] and [48334].

See #50504, #50550.

git-svn-id: https://develop.svn.wordpress.org/trunk@48345 602fd350-edb4-49c9-b593-d223f7449a82
  • Loading branch information
desrosj committed Jul 6, 2020
1 parent bf7ba4d commit b84d8e4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/wp-admin/includes/misc.php
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/wp-includes/block-patterns.php
Expand Up @@ -21,7 +21,7 @@
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'
);
}

Expand Down

0 comments on commit b84d8e4

Please sign in to comment.