]> git.mxchange.org Git - friendica.git/blobdiff - mod/msearch.php
More usage of dbm::is_result($r) instead of count($r):
[friendica.git] / mod / msearch.php
index 3b1b0b617ad185765d392e1c6b48d22d7bdc939b..1370b63bf2ca3e476e4f9c8389b5abd9ae6990a5 100644 (file)
@@ -1,6 +1,5 @@
 <?php
 
-if(! function_exists('msearch_post')) {
 function msearch_post(&$a) {
 
        $perpage = (($_POST['n']) ? $_POST['n'] : 80);
@@ -14,7 +13,7 @@ function msearch_post(&$a) {
        $r = q("SELECT COUNT(*) AS `total` FROM `profile` LEFT JOIN `user` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `user`.`hidewall` = 0 AND MATCH `pub_keywords` AGAINST ('%s') ",
                dbesc($search)
        );
-       if(count($r))
+       if(dbm::is_result($r))
                $total = $r[0]['total'];
 
        $r = q("SELECT `pub_keywords`, `username`, `nickname`, `user`.`uid` FROM `user` LEFT JOIN `profile` ON `user`.`uid` = `profile`.`uid` WHERE `is-default` = 1 AND `user`.`hidewall` = 0 AND MATCH `pub_keywords` AGAINST ('%s') LIMIT %d , %d ",
@@ -24,11 +23,11 @@ function msearch_post(&$a) {
        );
 
        $results = array();
-       if(count($r)) {
+       if(dbm::is_result($r)) {
                foreach($r as $rr)
                        $results[] = array(
-                               'name' => $rr['name'],
-                               'url' => $a->get_baseurl() . '/profile/' . $rr['nickname'],
+                               'name' => $rr['name'], 
+                               'url' => $a->get_baseurl() . '/profile/' . $rr['nickname'], 
                                'photo' => $a->get_baseurl() . '/photo/avatar/' . $rr['uid'] . '.jpg',
                                'tags' => str_replace(array(',','  '),array(' ',' '),$rr['pub_keywords'])
                        );
@@ -39,5 +38,5 @@ function msearch_post(&$a) {
        echo json_encode($output);
 
        killme();
-}
-}
+
+}
\ No newline at end of file