Changeset 58299
- Timestamp:
- 06/03/2024 04:54:31 PM (5 months ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-debug-data.php
r57245 r58299 480 480 'plugins_size' => array( 481 481 'label' => __( 'Plugins directory size' ), 482 'value' => $loading, 483 'debug' => 'loading...', 484 ), 485 'fonts_path' => array( 486 'label' => __( 'Fonts directory location' ), 487 'value' => wp_get_font_dir()['basedir'], 488 ), 489 'fonts_size' => array( 490 'label' => __( 'Fonts directory size' ), 482 491 'value' => $loading, 483 492 'debug' => 'loading...', … … 1637 1646 'plugins_size' => WP_PLUGIN_DIR, 1638 1647 'uploads_size' => $upload_dir['basedir'], 1648 'fonts_size' => wp_get_font_dir()['basedir'], 1639 1649 ); 1640 1650 -
trunk/src/wp-admin/site-health-info.php
r56570 r58299 65 65 <?php 66 66 67 $sizes_fields = array( 'uploads_size', 'themes_size', 'plugins_size', ' wordpress_size', 'database_size', 'total_size' );67 $sizes_fields = array( 'uploads_size', 'themes_size', 'plugins_size', 'fonts_size', 'wordpress_size', 'database_size', 'total_size' ); 68 68 69 69 foreach ( $info as $section => $details ) {
Note: See TracChangeset
for help on using the changeset viewer.