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/page.php

    r7116 r7146  
    6161        $last_user = get_userdata( $last );
    6262        $last_user_name = $last_user ? $last_user->display_name : __('Somebody');
    63         $message = sprintf( __( '%s is currently editing this page' ), wp_specialchars( $last_user_name ) );
     63        $message = sprintf( __( 'Warning: %s is currently editing this page' ), wp_specialchars( $last_user_name ) );
    6464        $message = str_replace( "'", "\'", "<div class='error'><p>$message</p></div>" );
    6565        add_action('admin_notices', create_function( '', "echo '$message';" ) );
Note: See TracChangeset for help on using the changeset viewer.