summaryrefslogtreecommitdiff
path: root/actions/noticesearch.php
diff options
context:
space:
mode:
authormillette <millette@controlyourself.ca>2008-11-20 16:50:41 -0500
committermillette <millette@controlyourself.ca>2008-11-20 16:50:41 -0500
commitbf72cde96f6c60b4b7dbca6c5d011f31bcc186f7 (patch)
tree22428f693b828aef1bee8cb3ac272584dc41ff42 /actions/noticesearch.php
parentaeaf70a472fe8ac24d47c624e5570a11d8707fb6 (diff)
sphinx search for notices
darcs-hash:20081120215041-099f7-db396a60755d551099122b58634b7550d5606d88.gz
Diffstat (limited to 'actions/noticesearch.php')
-rw-r--r--actions/noticesearch.php10
1 files changed, 3 insertions, 7 deletions
diff --git a/actions/noticesearch.php b/actions/noticesearch.php
index bc052d512..f8dad2a20 100644
--- a/actions/noticesearch.php
+++ b/actions/noticesearch.php
@@ -41,15 +41,11 @@ class NoticesearchAction extends SearchAction {
# lcase it for comparison
$q = strtolower($q);
- if(common_config('db','type')=='mysql') {
- $notice->whereAdd('MATCH(content) against (\''.addslashes($q).'\')');
- } else {
- $notice->whereAdd('to_tsvector(\'english\', content) @@ plainto_tsquery(\''.addslashes($q).'\')');
- }
+ $search_engine = $notice->getSearchEngine('identica_notices');
+ $search_engine->query($q);
# Ask for an extra to see if there's more.
-
- $notice->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
+ $search_engine->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1);
$cnt = $notice->find();