Coding Standards: Fix WPCS issues in [51227].

This fixes a "Tabs must be used to indent lines; spaces are not allowed" error.

See #53475.
Built from https://develop.svn.wordpress.org/trunk@51230


git-svn-id: http://core.svn.wordpress.org/trunk@50839 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2021-06-24 20:55:58 +00:00
parent fd27b43fba
commit 4381bf2ef6
3 changed files with 3 additions and 3 deletions

View File

@ -2200,7 +2200,7 @@ function media_upload_form( $errors = null ) {
// Check if WebP images can be edited.
if ( ! wp_image_editor_supports( array( 'mime_type' => 'image/webp' ) ) ) {
$plupload_init['webp_upload_error'] = true;
$plupload_init['webp_upload_error'] = true;
}
/**

View File

@ -3860,7 +3860,7 @@ function wp_plupload_default_settings() {
// Check if WebP images can be edited.
if ( ! wp_image_editor_supports( array( 'mime_type' => 'image/webp' ) ) ) {
$defaults['webp_upload_error'] = true;
$defaults['webp_upload_error'] = true;
}
/**

View File

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