From 3b783f6ac94b66090985bc33aa4ab73d4de154de Mon Sep 17 00:00:00 2001 From: Michael Date: Wed, 18 Oct 2017 16:54:12 +0000 Subject: [PATCH] Bugfix: Local comments weren't calculated. --- mod/nodeinfo.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mod/nodeinfo.php b/mod/nodeinfo.php index e889d5a94..7a690c15e 100644 --- a/mod/nodeinfo.php +++ b/mod/nodeinfo.php @@ -220,7 +220,7 @@ function nodeinfo_cron() { Config::set('nodeinfo', 'active_users_monthly', $active_users_monthly); } - $posts = q("SELECT COUNT(*) AS local_posts FROM `thread` WHERE `thread`.`wall` AND `thread`.`uid` != 0"); + $posts = q("SELECT COUNT(*) AS `local_posts` FROM `thread` WHERE `thread`.`wall` AND `thread`.`uid` != 0"); if (!is_array($posts)) { $local_posts = -1; @@ -231,7 +231,7 @@ function nodeinfo_cron() { logger('local_posts: '.$local_posts, LOGGER_DEBUG); - $posts = q("SELECT COUNT(*) FROM `contact` + $posts = q("SELECT COUNT(*) AS `local_comments` FROM `contact` INNER JOIN `item` ON `item`.`contact-id` = `contact`.`id` AND `item`.`uid` = `contact`.`uid` AND `item`.`id` != `item`.`parent` AND `item`.`network` IN ('%s', '%s', '%s') WHERE `contact`.`self`",