X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=statistics_json%2Fstatistics_json.php;h=87ffdb00399e2d1af439713d6e509858586ebcfa;hb=02cbdc6decccbfe8d2748dc1a560f2491605a520;hp=c30d00fc89adbf410984dc8549c8a13d7b2345bc;hpb=19cd337b3c5a72fc381a911f65ef6ce0b3b2bf92;p=friendica-addons.git diff --git a/statistics_json/statistics_json.php b/statistics_json/statistics_json.php index c30d00fc..87ffdb00 100644 --- a/statistics_json/statistics_json.php +++ b/statistics_json/statistics_json.php @@ -2,9 +2,10 @@ /** * Name: Statistics - * Description: Generates some statistics for http://pods.jasonrobinson.me/ - * Version: 0.1 + * Description: Generates some statistics for http://the-federation.info/ + * Version: 0.2 * Author: Michael Vogel + * Status: Unsupported */ function statistics_json_install() { @@ -29,7 +30,7 @@ function statistics_json_init() { $statistics = array( "name" => $a->config["sitename"], "network" => FRIENDICA_PLATFORM, - "version" => FRIENDICA_VERSION, + "version" => FRIENDICA_VERSION."-".DB_UPDATE_VERSION, "registrations_open" => ($a->config['register_policy'] != 0), "total_users" => get_config('statistics_json','total_users'), "active_users_halfyear" => get_config('statistics_json','active_users_halfyear'), @@ -125,7 +126,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` AND left(body, 6) != '[share'"); + $posts = q("SELECT COUNT(*) AS local_posts FROM `item` WHERE `wall` AND `uid` != 0 AND `id` = `parent` AND left(body, 6) != '[share'"); if (!is_array($posts)) $local_posts = -1;