Make WordPress Core

Changeset 55363


Ignore:
Timestamp:
02/18/2023 02:21:21 PM (2 years ago)
Author:
SergeyBiryukov
Message:

Docs: Add www. prefix to some PHP manual links in code comments.

This avoids an extra redirect and brings more consistency with other links to the PHP website in core.

Follow-up to [42980], [50914], [55355].

See #56792.

Location:
trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-privacy-policy-content.php

    r55356 r55363  
    105105
    106106        // The == operator (equal, not identical) was used intentionally.
    107         // See https://php.net/manual/en/language.operators.array.php
     107        // See https://www.php.net/manual/en/language.operators.array.php
    108108        if ( $new != $old ) {
    109109            // A plugin was activated or deactivated, or some policy text has changed.
  • trunk/src/wp-load.php

    r55355 r55363  
    3232     *
    3333     * This will be adapted in wp_debug_mode() located in wp-includes/load.php based on WP_DEBUG.
    34      * @see https://php.net/manual/en/errorfunc.constants.php List of known error levels.
     34     * @see https://www.php.net/manual/en/errorfunc.constants.php List of known error levels.
    3535     */
    3636    error_reporting( E_CORE_ERROR | E_CORE_WARNING | E_COMPILE_ERROR | E_ERROR | E_WARNING | E_PARSE | E_USER_ERROR | E_USER_WARNING | E_RECOVERABLE_ERROR );
Note: See TracChangeset for help on using the changeset viewer.