Make WordPress Core


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-admin/page.php

    r12068 r11380  
    9999        if ( current_user_can('edit_page', $page_ID) ) {
    100100                if ( $last = wp_check_post_lock( $post->ID ) ) {
    101                         add_action('admin_notices', '_admin_notice_post_locked' );
     101                        $last_user = get_userdata( $last );
     102                        $last_user_name = $last_user ? $last_user->display_name : __('Somebody');
     103                        $message = sprintf( __( 'Warning: %s is currently editing this page' ), esc_html( $last_user_name ) );
     104                        $message = str_replace( "'", "\'", "<div class='error'><p>$message</p></div>" );
     105                        add_action('admin_notices', create_function( '', "echo '$message';" ) );
    102106                } else {
    103107                        wp_set_post_lock( $post->ID );
Note: See TracChangeset for help on using the changeset viewer.