Changeset 18747
- Timestamp:
- 09/22/2011 02:27:00 AM (13 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/misc.php
r18637 r18747 585 585 <?php 586 586 } 587 ?> 587 588 /** 589 * Show error message only to single site admins or network admins 590 * 591 */ 592 function _show_errors_to_admins() { 593 global $_admin_error_messages; 594 595 if ( !is_super_admin() ) 596 return; 597 598 if ( !empty($_admin_error_messages) ) { 599 echo '<div class="error">'; 600 601 foreach ( (array) $_admin_error_messages as $message ) { 602 echo "<p>$message</p>\n"; 603 } 604 605 echo "</div>\n"; 606 } 607 } 608 add_action( 'admin_notices', '_show_errors_to_admins' ); 609 add_action( 'network_admin_notices', '_show_errors_to_admins' ); 610 -
trunk/wp-includes/functions.php
r18724 r18747 3521 3521 */ 3522 3522 function _doing_it_wrong( $function, $message, $version ) { 3523 global $_admin_error_messages; 3523 3524 3524 3525 do_action( 'doing_it_wrong_run', $function, $message, $version ); … … 3527 3528 if ( WP_DEBUG && apply_filters( 'doing_it_wrong_trigger_error', true ) ) { 3528 3529 $version = is_null( $version ) ? '' : sprintf( __( '(This message was added in version %s.)' ), $version ); 3529 trigger_error( sprintf( __( '%1$s was called <strong>incorrectly</strong>. %2$s %3$s' ), $function, $message, $version ) ); 3530 $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 ); 3531 3532 if ( WP_DEBUG_DISPLAY ) { 3533 (array) $_admin_error_messages[] = $error; 3534 } else { 3535 trigger_error( $error ); 3536 } 3530 3537 } 3531 3538 }
Note: See TracChangeset
for help on using the changeset viewer.