diff options
author | RedMatrix <info@friendica.com> | 2014-10-02 23:05:59 +1000 |
---|---|---|
committer | RedMatrix <info@friendica.com> | 2014-10-02 23:05:59 +1000 |
commit | a932c20dc419784518be0a03b697ee6b9322f455 (patch) | |
tree | 8b74ce2fb1b17de58af77e07c6df6cc7b68ff069 /include/poller.php | |
parent | 16b94f1dc0ae8ae812e6e584f76bfb7643f9aa20 (diff) | |
parent | 15c1529e836f6af4b9aa526cbc2ffa0c56711135 (diff) | |
download | volse-hubzilla-a932c20dc419784518be0a03b697ee6b9322f455.tar.gz volse-hubzilla-a932c20dc419784518be0a03b697ee6b9322f455.tar.bz2 volse-hubzilla-a932c20dc419784518be0a03b697ee6b9322f455.zip |
Merge pull request #610 from tuscanhobbit/dev
site language wasn't included in siteinfo/json
Diffstat (limited to 'include/poller.php')
-rw-r--r-- | include/poller.php | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/poller.php b/include/poller.php index f689059b9..2febaeb32 100644 --- a/include/poller.php +++ b/include/poller.php @@ -149,6 +149,13 @@ function poller_run($argv, $argc){ update_birthdays(); + //update statistics in config + require_once('include/statistics_fns.php'); + update_channels_total_stat(); + update_channels_active_halfyear_stat(); + update_channels_active_monthly_stat(); + update_local_posts_stat(); + // expire any read notifications over a month old q("delete from notify where seen = 1 and date < UTC_TIMESTAMP() - INTERVAL 30 DAY"); |