mirror of
https://github.com/WordPress/WordPress.git
synced 2025-04-03 10:35:47 +02:00
Delete instead of trash when bulk deleting media. Props nacin. fixes #11455
git-svn-id: http://svn.automattic.com/wordpress/trunk@12415 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
b82594d1cd
commit
20162ec029
@ -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');
|
||||
|
Loading…
Reference in New Issue
Block a user