Media: Remove target blank attribute from media uploader edit links.
This change removes a dispensable target blank attribute from Edit links displayed in the asynchronous file uploader. Follow-up to [22755]. Props kebbet, SergeyBiryukov. Fixes #54945. See #23432. Built from https://develop.svn.wordpress.org/trunk@52646 git-svn-id: http://core.svn.wordpress.org/trunk@52235 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b3d3adaa2b
commit
1d561e1fa6
|
@ -74,7 +74,7 @@ if ( isset( $_REQUEST['attachment_id'] ) && (int) $_REQUEST['attachment_id'] &&
|
||||||
</span>
|
</span>
|
||||||
<?php
|
<?php
|
||||||
if ( current_user_can( 'edit_post', $id ) ) {
|
if ( current_user_can( 'edit_post', $id ) ) {
|
||||||
echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '" target="_blank">' . _x( 'Edit', 'media item' ) . '</a>';
|
echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '">' . _x( 'Edit', 'media item' ) . '</a>';
|
||||||
} else {
|
} else {
|
||||||
echo '<span class="edit-attachment">' . _x( 'Success', 'media item' ) . '</span>';
|
echo '<span class="edit-attachment">' . _x( 'Success', 'media item' ) . '</span>';
|
||||||
}
|
}
|
||||||
|
|
|
@ -16,7 +16,7 @@
|
||||||
*
|
*
|
||||||
* @global string $wp_version
|
* @global string $wp_version
|
||||||
*/
|
*/
|
||||||
$wp_version = '6.0-alpha-52645';
|
$wp_version = '6.0-alpha-52646';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
* Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.
|
||||||
|
|
Loading…
Reference in New Issue