Changeset 48801 for trunk/src/wp-admin/includes/class-wp-site-health.php
- Timestamp:
- 08/16/2020 05:52:25 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-site-health.php
r48800 r48801 2047 2047 } 2048 2048 2049 $post_max_size = ini_get( 'post_max_size' );2050 $upload_max_ size = ini_get( 'upload_max_filesize' );2051 2052 if ( wp_convert_hr_to_bytes( $post_max_size ) < wp_convert_hr_to_bytes( $upload_max_ size ) ) {2049 $post_max_size = ini_get( 'post_max_size' ); 2050 $upload_max_filesize = ini_get( 'upload_max_filesize' ); 2051 2052 if ( wp_convert_hr_to_bytes( $post_max_size ) < wp_convert_hr_to_bytes( $upload_max_filesize ) ) { 2053 2053 $result['label'] = sprintf( 2054 2054 /* translators: 1: post_max_size, 2: upload_max_filesize */
Note: See TracChangeset
for help on using the changeset viewer.