From d3fd8ad8ecd55cc17e22f891dddb0a1be06d2be3 Mon Sep 17 00:00:00 2001 From: Garvin Hicking Date: Tue, 26 Aug 2008 13:48:48 +0000 Subject: [PATCH] Fix parse error --- include/functions_entries.inc.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/functions_entries.inc.php b/include/functions_entries.inc.php index d3cbbfa5..a6f58bd4 100644 --- a/include/functions_entries.inc.php +++ b/include/functions_entries.inc.php @@ -754,7 +754,7 @@ function &serendipity_searchEntries($term, $limit = '') { to_tsvector('english', title) @@to_tsquery('$term') OR to_tsvector('english', body) @@to_tsquery('$term') OR to_tsvector('english', extended) @@to_tsquery('$term') - )"); + )"; } else { $cond['find_part'] = "(title ILIKE '%$term%' OR body ILIKE '%$term%' OR extended ILIKE '%$term%')"; }