From 76a104a2e9b97301b9ce154e18d8518de608b63a Mon Sep 17 00:00:00 2001 From: ryan Date: Thu, 22 Feb 2007 01:54:28 +0000 Subject: [PATCH] Handle empty search query. Props charleshooper. fixes #3722 #3759 git-svn-id: http://svn.automattic.com/wordpress/trunk@4911 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/query.php | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/wp-includes/query.php b/wp-includes/query.php index 56ac86f05..dbb028537 100644 --- a/wp-includes/query.php +++ b/wp-includes/query.php @@ -765,9 +765,11 @@ class WP_Query { $searchand = ' AND '; } $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}')"; - - $search = " AND ({$search}) "; + 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 ( !empty($search) ) + $search = " AND ({$search}) "; } // Category stuff