﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
19202,custom post types with has_archive return duplicate results in query_posts,lukecarbis,,"Custom post types with has_archive return duplicate results in query_posts.

For example, running this on an install with a custom post type of product, and product posts of pokemon blue, pokemon red, pokemon green:

query_posts( array( 'posts_per_page' => 10, 'post_type' => 'product', 's' => 'pokemon' ));

if ( have_posts() )
while ( have_posts() ) {
	the_post();
	echo the_title().'<br />';
}

This returns multiple pokemon blues and reds, and no pokemon greens.
",defect (bug),closed,normal,,General,3.2.1,minor,invalid,needs-testing,
