diff options
author | friendica <info@friendica.com> | 2014-03-26 19:23:45 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-03-26 19:23:45 -0700 |
commit | 20717e34162d3759408fd5300548fc4cfa1b2263 (patch) | |
tree | ec947acf5c0254c86f98710759e2790767d37593 /include/poller.php | |
parent | e476ed6be5d89c1fedd683d69b1562928951fb2f (diff) | |
download | volse-hubzilla-20717e34162d3759408fd5300548fc4cfa1b2263.tar.gz volse-hubzilla-20717e34162d3759408fd5300548fc4cfa1b2263.tar.bz2 volse-hubzilla-20717e34162d3759408fd5300548fc4cfa1b2263.zip |
let's limit this to two weeks so it doesn't pound servers and waste too much space
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 aa09afd5d..d873058a6 100644 --- a/include/poller.php +++ b/include/poller.php @@ -174,7 +174,7 @@ function poller_run($argv, $argc){ ); if($r) { - $feedurl = $r[0]['site_url'] . '/zotfeed?f=&mindate=' . urlencode(datetime_convert('','','now - 1 month')); + $feedurl = $r[0]['site_url'] . '/zotfeed?f=&mindate=' . urlencode(datetime_convert('','','now - 15 days')); $x = z_fetch_url($feedurl); if(($x) && ($x['success'])) { $total = 0; |