From: Michael Vogel Date: Mon, 3 Feb 2014 21:39:02 +0000 (+0100) Subject: statistics: Bugfix for query. X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=b629aae1c66c365726d3d421113edcdc1c087c5c;p=friendica-addons.git statistics: Bugfix for query. --- diff --git a/statistics_json/statistics_json.php b/statistics_json/statistics_json.php index ffafb400..e29d7422 100644 --- a/statistics_json/statistics_json.php +++ b/statistics_json/statistics_json.php @@ -46,7 +46,7 @@ function statistics_json_cron($a,$b) { $next = $last + (180 * 60); if($next > time()) { logger('statistics_json_cron: calculation intervall not reached'); - return; + // return; } } logger('statistics_json_cron: cron_start'); @@ -91,7 +91,7 @@ function statistics_json_cron($a,$b) { set_config('statistics_json','active_users_monthly', $active_users_monthly); } - $posts = q("SELECT COUNT(*) AS local_posts FROM `item` WHERE `wall` left(body, 6) != '[share'"); + $posts = q("SELECT COUNT(*) AS local_posts FROM `item` WHERE `wall` AND left(body, 6) != '[share'"); if (!is_array($posts)) $local_posts = -1;