Make WordPress Core


Ignore:
Timestamp:
09/22/2011 09:15:45 AM (13 years ago)
Author:
westi
Message:

Revert [18747] until we can discuss it further. See #18453.

File:
1 edited

Legend:

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

    r18751 r18752  
    35233523 */
    35243524function _doing_it_wrong( $function, $message, $version ) {
    3525     global $_admin_error_messages;
    35263525
    35273526    do_action( 'doing_it_wrong_run', $function, $message, $version );
     
    35303529    if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) {
    35313530        $version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version );
    3532         $error = sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s. For more information please install a debugging plugin like <a href="http://wordpress.org/extend/plugins/debug-bar/">Debug Bar</a> or <a href="http://wordpress.org/extend/plugins/log-deprecated-notices/">Log Deprecated Notices</a>.' ), $function, $message, $version );
    3533 
    3534         if ( WP_DEBUG_DISPLAY ) {
    3535             (array) $_admin_error_messages[] = $error;
    3536         } else {
    3537             trigger_error( $error );
    3538         }
     3531        trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) );
    35393532    }
    35403533}
Note: See TracChangeset for help on using the changeset viewer.