diff --git src/wp-admin/async-upload.php src/wp-admin/async-upload.php
index 5e28c1e8e4..7506c5278f 100644
|
|
if ( isset( $_REQUEST['attachment_id'] ) && intval( $_REQUEST['attachment_id'] ) |
53 | 53 | case 3: |
54 | 54 | $thumb_url = wp_get_attachment_image_src( $id, 'thumbnail', true ); |
55 | 55 | if ( $thumb_url ) { |
56 | | echo '<img class="pinkynail" src="' . esc_url( $thumb_url[0] ) . '" alt="" />'; |
| 56 | echo '<img class="pinkynail" src="' . $thumb_url[0] . '" alt="" />'; |
57 | 57 | } |
58 | 58 | echo '<a class="edit-attachment" href="' . esc_url( get_edit_post_link( $id ) ) . '" target="_blank">' . _x( 'Edit', 'media item' ) . '</a>'; |
59 | 59 | |