Make WordPress Core


Ignore:
Timestamp:
03/04/2008 12:05:30 AM (18 years ago)
Author:
ryan
Message:

Post edit collision detection fixes from mdawaffe. fixes #6043

File:
1 edited

Legend:

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

    r7103 r7146  
    7070                $last_user = get_userdata( $last );
    7171                $last_user_name = $last_user ? $last_user->display_name : __('Somebody');
    72                 $message = sprintf( __( '%s is currently editing this post' ), wp_specialchars( $last_user_name ) );
     72                $message = sprintf( __( 'Warning: %s is currently editing this post' ), wp_specialchars( $last_user_name ) );
    7373                $message = str_replace( "'", "\'", "<div class='error'><p>$message</p></div>" );
    7474                add_action('admin_notices', create_function( '', "echo '$message';" ) );
Note: See TracChangeset for help on using the changeset viewer.