Coding Standards: Fix a precision alignment issue in `wp-admin/includes/template.php`.

Follow-up to [49223].

See #52627.
Built from https://develop.svn.wordpress.org/trunk@50795


git-svn-id: http://core.svn.wordpress.org/trunk@50404 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-04-28 18:55:05 +00:00
parent 4f7ace4f9c
commit 754714ba43
2 changed files with 2 additions and 2 deletions

View File

@ -2345,7 +2345,7 @@ function get_media_states( $post ) {
* 'Background Image', 'Site Icon', 'Logo'.
* @param WP_Post $post The current attachment object.
*/
return apply_filters( 'display_media_states', $media_states, $post );
return apply_filters( 'display_media_states', $media_states, $post );
}
/**

View File

@ -13,7 +13,7 @@
*
* @global string $wp_version
*/
$wp_version = '5.8-alpha-50794';
$wp_version = '5.8-alpha-50795';
/**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.