Site Health: Rename `upload_max` array key in file upload checks to `max_effective_size` for clarity.

Follow-up to [48535].

See #50038.
Built from https://develop.svn.wordpress.org/trunk@48544


git-svn-id: http://core.svn.wordpress.org/trunk@48306 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
Sergey Biryukov 2020-07-21 16:20:03 +00:00
parent 1f153b0d12
commit 48841f9ab3
2 changed files with 2 additions and 2 deletions

View File

@ -550,7 +550,7 @@ class WP_Debug_Data {
'label' => __( 'Max size of an uploaded file' ), 'label' => __( 'Max size of an uploaded file' ),
'value' => $upload_max_size, 'value' => $upload_max_size,
); );
$info['wp-media']['fields']['upload_max'] = array( $info['wp-media']['fields']['max_effective_size'] = array(
'label' => __( 'Max effective file size' ), 'label' => __( 'Max effective file size' ),
'value' => size_format( $effective ), 'value' => size_format( $effective ),
); );

View File

@ -13,7 +13,7 @@
* *
* @global string $wp_version * @global string $wp_version
*/ */
$wp_version = '5.5-beta2-48543'; $wp_version = '5.5-beta2-48544';
/** /**
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema. * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.