Make WordPress Core

Ticket #46664: 46664.diff

File 46664.diff, 1.7 KB (added by xkon, 6 years ago)
  • src/wp-admin/includes/class-wp-debug-data.php

    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 { 
    379379                $info['wp-paths-sizes']['fields'] = array(
    380380                        array(
    381381                                'label' => __( 'Uploads Directory Location' ),
    382                                 'value' => $size_directories['uploads']['path'],
     382                                'value' => wp_normalize_path( $size_directories['uploads']['path'] ),
    383383                        ),
    384384                        array(
    385385                                'label' => __( 'Uploads Directory Size' ),
    class WP_Debug_Data { 
    387387                        ),
    388388                        array(
    389389                                'label' => __( 'Themes Directory Location' ),
    390                                 'value' => $size_directories['themes']['path'],
     390                                'value' => wp_normalize_path( $size_directories['themes']['path'] ),
    391391                        ),
    392392                        array(
    393393                                'label' => __( 'Current Theme Directory' ),
    394                                 'value' => get_template_directory(),
     394                                'value' => wp_normalize_path( get_template_directory() ),
    395395                        ),
    396396                        array(
    397397                                'label' => __( 'Themes Directory Size' ),
    class WP_Debug_Data { 
    399399                        ),
    400400                        array(
    401401                                'label' => __( 'Plugins Directory Location' ),
    402                                 'value' => $size_directories['plugins']['path'],
     402                                'value' => wp_normalize_path( $size_directories['plugins']['path'] ),
    403403                        ),
    404404                        array(
    405405                                'label' => __( 'Plugins Directory Size' ),
    class WP_Debug_Data { 
    407407                        ),
    408408                        array(
    409409                                'label' => __( 'WordPress Directory Location' ),
    410                                 'value' => $size_directories['wordpress']['path'],
     410                                'value' => wp_normalize_path( $size_directories['wordpress']['path'] ),
    411411                        ),
    412412                        array(
    413413                                'label' => __( 'WordPress Directory Size' ),