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/items.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/items.php')
-rwxr-xr-x | include/items.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 7764d2f62..ca6737f8f 100755 --- a/include/items.php +++ b/include/items.php @@ -4056,7 +4056,7 @@ function zot_feed($uid,$observer_xchan,$mindate) { } if($mindate != '0000-00-00 00:00:00') { - $sql_extra .= " and created > '$mindate' "; + $sql_extra .= " and ( created > '$mindate' or edited > '$mindate' ) "; $limit = ""; } else |