diff options
author | friendica <info@friendica.com> | 2014-02-10 20:38:26 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-02-10 20:38:26 -0800 |
commit | 59094cda5166e58a451cb0372a59d8059cbacd6f (patch) | |
tree | 1b1afd97b3aad6732ac57fd94fe2173c21337a02 /include/poller.php | |
parent | 74fb7d158b770906aafab9e85641c5de3d2488cf (diff) | |
download | volse-hubzilla-59094cda5166e58a451cb0372a59d8059cbacd6f.tar.gz volse-hubzilla-59094cda5166e58a451cb0372a59d8059cbacd6f.tar.bz2 volse-hubzilla-59094cda5166e58a451cb0372a59d8059cbacd6f.zip |
reversed args in update_modtime, incorrect ud_guid and ud_hash
Diffstat (limited to 'include/poller.php')
-rw-r--r-- | include/poller.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/poller.php b/include/poller.php index 0dcec4c0f..76c82db09 100644 --- a/include/poller.php +++ b/include/poller.php @@ -64,7 +64,7 @@ function poller_run($argv, $argc){ $r = q("select channel_id from channel where channel_dirdate < UTC_TIMESTAMP() - INTERVAL 30 DAY"); if($r) { foreach($r as $rr) { - proc_run('php','include/directory.php',$rr['channel_id']); + proc_run('php','include/directory.php',$rr['channel_id'],'ping'); if($interval) @time_sleep_until(microtime(true) + (float) $interval); } |