diff options
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 bd3f81a2e..896553a43 100644 --- a/include/poller.php +++ b/include/poller.php @@ -158,6 +158,13 @@ function poller_run($argv, $argc){ mark_orphan_hubsxchans(); + // get rid of really old poco records + + q("delete from xlink where xlink_updated < %s - INTERVAL %s", + db_utcnow(), db_quoteinterval('14 DAY') + ); + + /** * End Cron Weekly */ |