Make WordPress Core

Ticket #24975: 24975.diff

File 24975.diff, 613 bytes (added by mattheu, 10 years ago)
  • src/wp-admin/includes/nav-menu.php

    diff --git a/src/wp-admin/includes/nav-menu.php b/src/wp-admin/includes/nav-menu.php
    index 44f3ee0..070a980 100644
    a b function _wp_ajax_menu_quick_search( $request = array() ) { 
    390390                if ( 'posttype' == $matches[1] && get_post_type_object( $matches[2] ) ) {
    391391                        query_posts(array(
    392392                                'posts_per_page' => 10,
    393                                 'post_type' => $matches[2],
    394                                 's' => $query,
     393                                'post_type'      => $matches[2],
     394                                'post_status'    => 'publish',
     395                                's'              => $query,
    395396                        ));
    396397                        if ( ! have_posts() )
    397398                                return;