forked from friendica/friendica-addons
statistics: Don't count shares.
This commit is contained in:
parent
9ae0f9a65d
commit
31cff782f8
|
@ -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`");
|
||||
$posts = q("SELECT COUNT(*) AS local_posts FROM `item` WHERE `wall` left(body, 6) != '[share'");
|
||||
|
||||
if (!is_array($posts))
|
||||
$local_posts = -1;
|
||||
|
|
Loading…
Reference in a new issue