From 5eeb02d2ea14d2b6b519f077139b80980d72c765 Mon Sep 17 00:00:00 2001 From: Andrew Nacin Date: Fri, 21 May 2010 19:23:52 +0000 Subject: [PATCH] Exclusion instead of inclusion for post types for lost attachment scan. Exclude attachments and any !public types, and don't consider attachments on unregistered post types to be lost. fixes #10911. git-svn-id: https://develop.svn.wordpress.org/trunk@14789 602fd350-edb4-49c9-b593-d223f7449a82 --- wp-admin/upload.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-admin/upload.php b/wp-admin/upload.php index e7b5717adc..3586051d4f 100644 --- a/wp-admin/upload.php +++ b/wp-admin/upload.php @@ -20,7 +20,7 @@ if ( isset($_GET['find_detached']) ) { if ( !current_user_can('edit_posts') ) wp_die( __('You are not allowed to scan for lost attachments.') ); - $all_posts = implode( ',', $wpdb->get_col("SELECT ID FROM $wpdb->posts WHERE post_type IN ('" . join("', '", get_post_types() ) . "')")); + $all_posts = implode( ',', $wpdb->get_col("SELECT ID FROM $wpdb->posts WHERE post_type NOT IN ('attachment', '" . join("', '", get_post_types( array( 'public' => false ) ) ) . "')" ) ); $lost = $wpdb->get_col("SELECT ID FROM $wpdb->posts WHERE post_type = 'attachment' AND post_parent > '0' and post_parent NOT IN ($all_posts)"); $_GET['detached'] = 1;