Make WordPress Core


Ignore:
Timestamp:
01/29/2020 12:43:23 AM (5 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-settings.php

    r47063 r47122  
    8888    include( WP_CONTENT_DIR . '/advanced-cache.php' );
    8989
    90     // Re-initialize any hooks added manually by advanced-cache.php
     90    // Re-initialize any hooks added manually by advanced-cache.php.
    9191    if ( $wp_filter ) {
    9292        $wp_filter = WP_Hook::build_preinitialized_hooks( $wp_filter );
     
    331331wp_cookie_constants();
    332332
    333 // Define and enforce our SSL constants
     333// Define and enforce our SSL constants.
    334334wp_ssl_constants();
    335335
     
    344344wp_start_scraping_edited_file_errors();
    345345
    346 // Register the default theme directory root
     346// Register the default theme directory root.
    347347register_theme_directory( get_theme_root() );
    348348
     
    398398wp_functionality_constants();
    399399
    400 // Add magic quotes and set up $_REQUEST ( $_GET + $_POST )
     400// Add magic quotes and set up $_REQUEST ( $_GET + $_POST ).
    401401wp_magic_quotes();
    402402
     
    526526do_action( 'init' );
    527527
    528 // Check site status
     528// Check site status.
    529529if ( is_multisite() ) {
    530530    $file = ms_site_check();
Note: See TracChangeset for help on using the changeset viewer.