X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Fnodeinfo.php;h=334dcb055d6c3868c43016e6c864d60ef3ce2222;hb=126c4774c330d9c9c9038312198c57fb653682df;hp=40094ee6e3a24047c572d479af1624a97adcd9ac;hpb=a63e060b51609a78997134b612f372c2a4e07463;p=friendica.git diff --git a/mod/nodeinfo.php b/mod/nodeinfo.php index 40094ee6e3..334dcb055d 100644 --- a/mod/nodeinfo.php +++ b/mod/nodeinfo.php @@ -174,7 +174,7 @@ function nodeinfo_cron() { return; $last = get_config('nodeinfo','last_calucation'); - +/* if($last) { // Calculate every 24 hours $next = $last + (24 * 60 * 60); @@ -183,7 +183,7 @@ function nodeinfo_cron() { return; } } - logger("cron_start"); +*/ logger("cron_start"); $users = qu("SELECT `user`.`uid`, `user`.`login_date`, `contact`.`last-item` FROM `user` @@ -217,11 +217,13 @@ function nodeinfo_cron() { set_config('nodeinfo','active_users_monthly', $active_users_monthly); } + $posts = qu("SELECT COUNT(*) AS local_posts FROM `thread` WHERE `thread`.`wall`"); +/* $posts = qu("SELECT COUNT(*) AS `local_posts` FROM `item` INNER JOIN `contact` ON `contact`.`id` = `item`.`contact-id` WHERE `contact`.`self` and `item`.`id` = `item`.`parent` AND left(body, 6) != '[share' AND `item`.`network` IN ('%s', '%s', '%s')", dbesc(NETWORK_OSTATUS), dbesc(NETWORK_DIASPORA), dbesc(NETWORK_DFRN)); - +*/ if (!is_array($posts)) $local_posts = -1; else