Make WordPress Core

Changeset 18923


Ignore:
Timestamp:
10/08/2011 10:48:05 PM (13 years ago)
Author:
azaozz
Message:

Add link to the codex in the doing_it_wrong notices, see #18453

File:
1 edited

Legend:

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

    r18885 r18923  
    34073407 * @param string $replacement Optional. The function that should have been called
    34083408 */
    3409 function _deprecated_function( $function, $version, $replacement=null ) {
     3409function _deprecated_function( $function, $version, $replacement = null ) {
    34103410
    34113411    do_action( 'deprecated_function_run', $function, $replacement, $version );
     
    35283528function _doing_it_wrong( $function, $message, $version ) {
    35293529
     3530    $message .= ' ' . __('Please see <a href="http://codex.wordpress.org/Debugging_in_WordPress">Debugging in WordPress</a> for more information.');
    35303531    do_action( 'doing_it_wrong_run', $function, $message, $version );
    35313532
Note: See TracChangeset for help on using the changeset viewer.