Make WordPress Core


Ignore:
Timestamp:
07/25/2019 10:44:48 PM (5 years ago)
Author:
SergeyBiryukov
Message:

General: First pass at replacing Codex URLs with a corresponding HelpHub or DevHub article.

Props ianbelanger, tobifjellner, SergeyBiryukov.
See #47771.

File:
1 edited

Legend:

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

    r45667 r45674  
    47934793            $message .= ' ' . sprintf(
    47944794                __( 'Please see <a href="%s">Debugging in WordPress</a> for more information.' ),
    4795                 __( 'https://codex.wordpress.org/Debugging_in_WordPress' )
     4795                __( 'https://wordpress.org/support/article/debugging-in-wordpress/' )
    47964796            );
    47974797            /* translators: Developer debugging message. 1: PHP function name, 2: Explanatory message, 3: Version information message */
     
    48054805            $message .= sprintf(
    48064806                ' Please see <a href="%s">Debugging in WordPress</a> for more information.',
    4807                 'https://codex.wordpress.org/Debugging_in_WordPress'
     4807                'https://wordpress.org/support/article/debugging-in-wordpress/'
    48084808            );
    48094809            trigger_error( sprintf( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s', $function, $message, $version ) );
Note: See TracChangeset for help on using the changeset viewer.