Hide the "If you take over" string from the post locked dialog when the override_post_lock filter is used to prevent an override.
props azaozz. fixes #24930. git-svn-id: https://develop.svn.wordpress.org/trunk@25694 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
9bd950b6d1
commit
c0fb231f92
@ -1268,7 +1268,13 @@ function _admin_notice_post_locked() {
|
||||
?>
|
||||
<div class="post-locked-message">
|
||||
<div class="post-locked-avatar"><?php echo get_avatar( $user->ID, 64 ); ?></div>
|
||||
<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>
|
||||
<p class="currently-editing wp-tab-first" tabindex="0">
|
||||
<?php
|
||||
_e( 'This content is currently locked.' );
|
||||
if ( $override )
|
||||
printf( ' ' . __( 'If you take over, %s will be blocked from continuing to edit.' ), esc_html( $user->display_name ) );
|
||||
?>
|
||||
</p>
|
||||
<?php do_action( 'post_locked_dialog', $post ); ?>
|
||||
<p>
|
||||
<a class="button" href="<?php echo esc_url( $sendback ); ?>"><?php echo $sendback_text; ?></a>
|
||||
|
Loading…
Reference in New Issue
Block a user