diff --git a/src/wp-admin/includes/class-wp-debug-data.php b/src/wp-admin/includes/class-wp-debug-data.php
index 6e82e0b672..9ee83e9ee6 100644
|
a
|
b
|
class WP_Debug_Data { |
| 379 | 379 | $info['wp-paths-sizes']['fields'] = array( |
| 380 | 380 | array( |
| 381 | 381 | 'label' => __( 'Uploads Directory Location' ), |
| 382 | | 'value' => $size_directories['uploads']['path'], |
| | 382 | 'value' => wp_normalize_path( $size_directories['uploads']['path'] ), |
| 383 | 383 | ), |
| 384 | 384 | array( |
| 385 | 385 | 'label' => __( 'Uploads Directory Size' ), |
| … |
… |
class WP_Debug_Data { |
| 387 | 387 | ), |
| 388 | 388 | array( |
| 389 | 389 | 'label' => __( 'Themes Directory Location' ), |
| 390 | | 'value' => $size_directories['themes']['path'], |
| | 390 | 'value' => wp_normalize_path( $size_directories['themes']['path'] ), |
| 391 | 391 | ), |
| 392 | 392 | array( |
| 393 | 393 | 'label' => __( 'Current Theme Directory' ), |
| 394 | | 'value' => get_template_directory(), |
| | 394 | 'value' => wp_normalize_path( get_template_directory() ), |
| 395 | 395 | ), |
| 396 | 396 | array( |
| 397 | 397 | 'label' => __( 'Themes Directory Size' ), |
| … |
… |
class WP_Debug_Data { |
| 399 | 399 | ), |
| 400 | 400 | array( |
| 401 | 401 | 'label' => __( 'Plugins Directory Location' ), |
| 402 | | 'value' => $size_directories['plugins']['path'], |
| | 402 | 'value' => wp_normalize_path( $size_directories['plugins']['path'] ), |
| 403 | 403 | ), |
| 404 | 404 | array( |
| 405 | 405 | 'label' => __( 'Plugins Directory Size' ), |
| … |
… |
class WP_Debug_Data { |
| 407 | 407 | ), |
| 408 | 408 | array( |
| 409 | 409 | 'label' => __( 'WordPress Directory Location' ), |
| 410 | | 'value' => $size_directories['wordpress']['path'], |
| | 410 | 'value' => wp_normalize_path( $size_directories['wordpress']['path'] ), |
| 411 | 411 | ), |
| 412 | 412 | array( |
| 413 | 413 | 'label' => __( 'WordPress Directory Size' ), |