diff options
author | friendica <info@friendica.com> | 2014-09-01 19:55:43 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-01 19:55:43 -0700 |
commit | 148f4e8795391d80994fe8009f161b02f57a130f (patch) | |
tree | 23dfe61f2de91547a7e49628874b73a08ba7a8a5 /include/externals.php | |
parent | 43738da24f6025fba2cdd9d2a7400f6f18cb1ca3 (diff) | |
download | volse-hubzilla-148f4e8795391d80994fe8009f161b02f57a130f.tar.gz volse-hubzilla-148f4e8795391d80994fe8009f161b02f57a130f.tar.bz2 volse-hubzilla-148f4e8795391d80994fe8009f161b02f57a130f.zip |
issue #578 - this won't fix old items but should work going forward. The extra time slop shouldn't be needed and will in fact result in possibly undesired redundancy.
Diffstat (limited to 'include/externals.php')
-rw-r--r-- | include/externals.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/externals.php b/include/externals.php index 8944524b7..ad2c71ac9 100644 --- a/include/externals.php +++ b/include/externals.php @@ -61,7 +61,7 @@ function externals_run($argv, $argc){ if($url) { if($r[0]['site_pull'] !== '0000-00-00 00:00:00') - $mindate = urlencode($r[0]['site_pull']); + $mindate = urlencode(datetime_convert('','',$r[0]['site_pull'] . ' - 1 day')); else { $days = get_config('externals','since_days'); if($days === false) |