Handle empty search query. Props charleshooper. fixes #3722 #3759

git-svn-id: http://svn.automattic.com/wordpress/trunk@4911 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
ryan 2007-02-22 01:54:28 +00:00
parent a316ece6ab
commit 76a104a2e9
1 changed files with 5 additions and 3 deletions

View File

@ -765,9 +765,11 @@ class WP_Query {
$searchand = ' AND '; $searchand = ' AND ';
} }
$term = addslashes_gpc($q['s']); $term = addslashes_gpc($q['s']);
if (!$q['sentence'] && count($q['search_terms']) > 1 && $q['search_terms'][0] != $q['s'] ) $search .= " OR (post_title LIKE '{$n}{$term}{$n}') OR (post_content LIKE '{$n}{$term}{$n}')"; if (!$q['sentence'] && count($q['search_terms']) > 1 && $q['search_terms'][0] != $q['s'] )
$search .= " OR (post_title LIKE '{$n}{$term}{$n}') OR (post_content LIKE '{$n}{$term}{$n}')";
$search = " AND ({$search}) ";
if ( !empty($search) )
$search = " AND ({$search}) ";
} }
// Category stuff // Category stuff