Changeset 48594 for trunk/src/wp-admin/includes/meta-boxes.php
- Timestamp:
- 07/24/2020 12:19:37 AM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/includes/meta-boxes.php
r48583 r48594 335 335 $delete_text = __( 'Delete permanently' ); 336 336 } else { 337 $delete_text = __( 'Move to trash' );337 $delete_text = __( 'Move to Trash' ); 338 338 } 339 339 ?> … … 439 439 if ( current_user_can( 'delete_post', $post->ID ) ) { 440 440 if ( EMPTY_TRASH_DAYS && MEDIA_TRASH ) { 441 echo "<a class='submitdelete deletion' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Move to trash' ) . '</a>';441 echo "<a class='submitdelete deletion' href='" . get_delete_post_link( $post->ID ) . "'>" . __( 'Move to Trash' ) . '</a>'; 442 442 } else { 443 443 $delete_ays = ! MEDIA_TRASH ? " onclick='return showNotice.warn();'" : '';
Note: See TracChangeset
for help on using the changeset viewer.