summaryrefslogtreecommitdiff
path: root/lib/search_engines.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/search_engines.php')
-rw-r--r--lib/search_engines.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/search_engines.php b/lib/search_engines.php
index 7fcc1ffcb..d53d7d8d8 100644
--- a/lib/search_engines.php
+++ b/lib/search_engines.php
@@ -98,10 +98,10 @@ class MySQLSearch extends SearchEngine {
function query($q) {
if ('identica_people' === $this->table)
return $this->target->whereAdd('MATCH(nickname, fullname, location, bio, homepage) ' .
- 'against (\''.addslashes($q).'\')');
+ 'against (\''.addslashes($q).'\')');
if ('identica_notices' === $this->table)
return $this->target->whereAdd('MATCH(content) ' .
- 'against (\''.addslashes($q).'\')');
+ 'against (\''.addslashes($q).'\')');
}
}