diff options
author | friendica <info@friendica.com> | 2014-09-08 20:35:15 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2014-09-08 20:35:15 -0700 |
commit | c6d07feff575862b5db8d05e02be6375e51034c7 (patch) | |
tree | 8d1bf75a545075753033c47ee28f4d4ae2a96517 /include/externals.php | |
parent | 8fbeb370db7d1ec16a2f221fb7f022aebe7be109 (diff) | |
download | volse-hubzilla-c6d07feff575862b5db8d05e02be6375e51034c7.tar.gz volse-hubzilla-c6d07feff575862b5db8d05e02be6375e51034c7.tar.bz2 volse-hubzilla-c6d07feff575862b5db8d05e02be6375e51034c7.zip |
This is long overdue - use a symblic constant NULL_DATE instead of the easily mis-typed sequence '0000-00-00 00:00:00'
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 ad2c71ac9..acfaae3b6 100644 --- a/include/externals.php +++ b/include/externals.php @@ -60,7 +60,7 @@ function externals_run($argv, $argc){ } if($url) { - if($r[0]['site_pull'] !== '0000-00-00 00:00:00') + if($r[0]['site_pull'] !== NULL_DATE) $mindate = urlencode(datetime_convert('','',$r[0]['site_pull'] . ' - 1 day')); else { $days = get_config('externals','since_days'); |