Make WordPress Core


Ignore:
Timestamp:
04/12/2015 09:28:58 PM (9 years ago)
Author:
ocean90
Message:

Use HTTPS URLs for codex.wordpress.org.

see #27115.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/functions.php

    r32107 r32116  
    35573557        if ( function_exists( '__' ) ) {
    35583558            $version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version );
    3559             $message .= ' ' . __( 'Please see <a href="http://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.' );
     3559            $message .= ' ' . __( 'Please see <a href="https://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.' );
    35603560            trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) );
    35613561        } else {
    35623562            $version = is_null( $version ) ? '' : sprintf( '(This message was added in version %s.)', $version );
    3563             $message .= ' Please see <a href="http://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.';
     3563            $message .= ' Please see <a href="https://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.';
    35643564            trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) );
    35653565        }
     
    41844184 * their plugin file and move the data headers to the top.
    41854185 *
    4186  * @link http://codex.wordpress.org/File_Header
     4186 * @link https://codex.wordpress.org/File_Header
    41874187 *
    41884188 * @since 2.9.0
Note: See TracChangeset for help on using the changeset viewer.