Re-enable trash link appearance on autosave. fixes #11351

git-svn-id: http://svn.automattic.com/wordpress/trunk@12330 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
markjaquith 2009-12-07 16:38:04 +00:00
parent d3e30f2ff6
commit 0fa00fd809
1 changed files with 1 additions and 1 deletions

View File

@ -184,7 +184,7 @@ if ( $can_publish ) : // Contributors don't get to choose the date of publish ?>
<?php do_action('post_submitbox_start'); ?>
<div id="delete-action">
<?php
if ( ( 'edit' == $action ) && current_user_can("delete_${post_type}", $post->ID) ) {
if ( current_user_can( "delete_${post_type}", $post->ID ) ) {
if ( !EMPTY_TRASH_DAYS ) {
$delete_url = wp_nonce_url( add_query_arg( array('action' => 'delete', 'post' => $post->ID) ), "delete-${post_type}_{$post->ID}" );
$delete_text = __('Delete Permanently');