From 83fb251dc3614b9cd6f98696ef6a66f206f74e35 Mon Sep 17 00:00:00 2001 From: Ryan Boren Date: Wed, 16 Dec 2009 17:14:21 +0000 Subject: [PATCH] Delete instead of trash when bulk deleting media. Props nacin. fixes #11455 git-svn-id: https://develop.svn.wordpress.org/trunk@12415 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-includes/post.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-includes/post.php b/wp-includes/post.php index 626ebc45ce..f0427c16d3 100644 --- a/wp-includes/post.php +++ b/wp-includes/post.php @@ -2839,7 +2839,7 @@ function wp_delete_attachment( $post_id, $force_delete = false ) { if ( 'attachment' != $post->post_type ) return false; - if ( !$force_delete && 'trash' != $post->post_status ) + if ( !$force_delete && EMPTY_TRASH_DAYS && MEDIA_TRASH && 'trash' != $post->post_status ) return wp_trash_post( $post_id ); delete_post_meta($post_id, '_wp_trash_meta_status');