]> git.mxchange.org Git - quix0rs-gnu-social.git/blobdiff - _darcs/pristine/lib/search_engines.php
replace all tabs with four spaces
[quix0rs-gnu-social.git] / _darcs / pristine / lib / search_engines.php
index 7fcc1ffcb027d375e120ea58271bbc379292b1d1..d53d7d8d8a731c2ca2c75de4628185821e1b666f 100644 (file)
@@ -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).'\')');
     }
 }