Changeset 45237
- Timestamp:
- 04/17/2019 09:25:05 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/class-wp-debug-data.php
r45230 r45237 390 390 } 391 391 392 $ not_calculated = __( 'Not calculated' );392 $loading = __( 'Loading…' ); 393 393 394 394 $info['wp-paths-sizes']['fields'] = array( … … 399 399 'wordpress_size' => array( 400 400 'label' => __( 'WordPress directory size' ), 401 'value' => $ not_calculated,402 'debug' => ' not calculated',401 'value' => $loading, 402 'debug' => 'loading...', 403 403 ), 404 404 'uploads_path' => array( … … 408 408 'uploads_size' => array( 409 409 'label' => __( 'Uploads directory size' ), 410 'value' => $ not_calculated,411 'debug' => ' not calculated',410 'value' => $loading, 411 'debug' => 'loading...', 412 412 ), 413 413 'themes_path' => array( … … 417 417 'themes_size' => array( 418 418 'label' => __( 'Themes directory size' ), 419 'value' => $ not_calculated,420 'debug' => ' not calculated',419 'value' => $loading, 420 'debug' => 'loading...', 421 421 ), 422 422 'plugins_path' => array( … … 426 426 'plugins_size' => array( 427 427 'label' => __( 'Plugins directory size' ), 428 'value' => $ not_calculated,429 'debug' => ' not calculated',428 'value' => $loading, 429 'debug' => 'loading...', 430 430 ), 431 431 'database_size' => array( 432 432 'label' => __( 'Database size' ), 433 'value' => $ not_calculated,434 'debug' => ' not calculated',433 'value' => $loading, 434 'debug' => 'loading...', 435 435 ), 436 436 'total_size' => array( 437 437 'label' => __( 'Total installation size' ), 438 'value' => $ not_calculated,439 'debug' => ' not calculated',438 'value' => $loading, 439 'debug' => 'loading...', 440 440 ), 441 441 );
Note: See TracChangeset
for help on using the changeset viewer.