]> git.mxchange.org Git - friendica.git/blobdiff - mod/msearch.php
Add Dice logging for Module creation
[friendica.git] / mod / msearch.php
index ce440d1ee25c86cf0a9164e8dbd8fd9d3b14124a..969446ffb524968f77f0acf1afd2528832abf23a 100644 (file)
@@ -45,20 +45,6 @@ function msearch_post(App $a)
 
        $condition = ["`net-publish` AND MATCH(`pub_keywords`) AGAINST (?)", $search];
        $total = DBA::count('owner-view', $condition);
-       $count_stmt = DBA::p(
-               "SELECT COUNT(*) AS `total`
-                       FROM `profile`
-                       JOIN `user` ON `user`.`uid` = `profile`.`uid`
-                       WHERE `profile`.`net-publish`
-                       AND MATCH(`pub_keywords`) AGAINST (?)",
-               $search
-       );
-       if (DBA::isResult($count_stmt)) {
-               $row = DBA::fetch($count_stmt);
-               $total = $row['total'];
-       }
-
-       DBA::close($count_stmt);
 
        $search_stmt = DBA::select('owner-view', ['pub_keywords', 'name', 'nickname', 'uid'], $condition, ['limit' => [$startrec, $perpage]]);
        while ($search_result = DBA::fetch($search_stmt)) {