Make WordPress Core

Changeset 24842


Ignore:
Timestamp:
07/29/2013 01:06:31 AM (12 years ago)
Author:
markjaquith
Message:

Fix wrong use of esc_html_e().

Props ocean90. Fixes #24854 for 3.6.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/3.6/wp-admin/includes/post.php

    r24799 r24842  
    12551255        <div class="post-locked-message">
    12561256        <div class="post-locked-avatar"><?php echo get_avatar( $user->ID, 64 ); ?></div>
    1257         <p class="currently-editing wp-tab-first" tabindex="0"><?php esc_html_e( sprintf( __( 'This content is currently locked. If you take over, %s will be blocked from continuing to edit.' ), $user->display_name ) ); ?></p>
     1257        <p class="currently-editing wp-tab-first" tabindex="0"><?php echo esc_html( sprintf( __( 'This content is currently locked. If you take over, %s will be blocked from continuing to edit.' ), $user->display_name ) ); ?></p>
    12581258        <?php do_action( 'post_lock_text', $post ); ?>
    12591259        <p>
Note: See TracChangeset for help on using the changeset viewer.