reversed args in update_modtime, incorrect ud_guid and ud_hash

This commit is contained in:
friendica
2014-02-10 20:38:26 -08:00
parent 74fb7d158b
commit 59094cda51
4 changed files with 5 additions and 5 deletions

View File

@@ -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);
}