Make WordPress Core

Ticket #21015: 21015.2.diff

File 21015.2.diff, 503 bytes (added by MikeHansenMe, 13 years ago)

filters trash status as well.

  • wp-admin/includes/class-wp-list-table.php

     
    367367                        SELECT DISTINCT YEAR( post_date ) AS year, MONTH( post_date ) AS month
    368368                        FROM $wpdb->posts
    369369                        WHERE post_type = %s
     370                        AND post_status != 'auto-draft'
     371                        AND post_status != 'trash'
    370372                        ORDER BY post_date DESC
    371373                ", $post_type ) );
    372374