Make WordPress Core


Ignore:
Timestamp:
01/29/2020 12:43:23 AM (6 years ago)
Author:
SergeyBiryukov
Message:

Docs: Improve inline comments per the documentation standards.

Includes minor code layout fixes for better readability.

See #48303.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-debug-data.php

    r47083 r47122  
    581581        if ( function_exists( 'phpversion' ) ) {
    582582            $php_version_debug = phpversion();
    583             // Whether PHP supports 64bit
     583            // Whether PHP supports 64-bit.
    584584            $php64bit = ( PHP_INT_SIZE * 8 === 64 );
    585585
     
    678678        }
    679679
    680         // SUHOSIN
     680        // SUHOSIN.
    681681        $suhosin_loaded = ( extension_loaded( 'suhosin' ) || ( defined( 'SUHOSIN_PATCH' ) && constant( 'SUHOSIN_PATCH' ) ) );
    682682
     
    687687        );
    688688
    689         // Imagick
     689        // Imagick.
    690690        $imagick_loaded = extension_loaded( 'imagick' );
    691691
     
    10131013            $theme_author  = $theme->author;
    10141014
    1015             // Sanitize
     1015            // Sanitize.
    10161016            $theme_author = wp_kses( $theme_author, array() );
    10171017
     
    10551055        }
    10561056
    1057         // Add more filesystem checks
     1057        // Add more filesystem checks.
    10581058        if ( defined( 'WPMU_PLUGIN_DIR' ) && is_dir( WPMU_PLUGIN_DIR ) ) {
    10591059            $is_writable_wpmu_plugin_dir = wp_is_writable( WPMU_PLUGIN_DIR );
Note: See TracChangeset for help on using the changeset viewer.