mirror of
https://github.com/WordPress/WordPress.git
synced 2025-03-09 07:00:01 +00:00
git-svn-id: http://svn.automattic.com/wordpress/trunk@4911 1a063a9b-81f0-0310-95a4-ce76da25c4cd
This commit is contained in:
parent
a316ece6ab
commit
76a104a2e9
@ -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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user