diff options
author | Mike Macgirvin <mike@macgirvin.com> | 2010-07-26 03:33:56 -0700 |
---|---|---|
committer | Mike Macgirvin <mike@macgirvin.com> | 2010-07-26 03:33:56 -0700 |
commit | 557ebe4700c477aeba043594f7b929b1129be191 (patch) | |
tree | 0a55f2bc94ac9b825ccfe5242c504d0ff813010f /include/items.php | |
parent | 9f81c3345b40d635a34f0448dd625b17f20508c3 (diff) | |
download | volse-hubzilla-557ebe4700c477aeba043594f7b929b1129be191.tar.gz volse-hubzilla-557ebe4700c477aeba043594f7b929b1129be191.tar.bz2 volse-hubzilla-557ebe4700c477aeba043594f7b929b1129be191.zip |
working on delete
Diffstat (limited to 'include/items.php')
-rw-r--r-- | include/items.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php index 2cb894f5a..a0804bcbe 100644 --- a/include/items.php +++ b/include/items.php @@ -62,8 +62,8 @@ function get_feed_for(&$a,$dfrn_id,$owner_id,$last_update) { `contact`.`thumb`, `contact`.`dfrn-id`, `contact`.`self`, `contact`.`id` AS `contact-id`, `contact`.`uid` AS `contact-uid` FROM `item` LEFT JOIN `contact` ON `contact`.`id` = `item`.`contact-id` - WHERE `item`.`uid` = %d AND `item`.`visible` = 1 AND `item`.`deleted` = 0 - AND NOT `item`.`type` IN ( 'remote', 'net-comment') AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 + WHERE `item`.`uid` = %d AND `item`.`visible` = 1 + AND NOT `item`.`type` IN ( 'remote', 'net-comment' ) AND `contact`.`blocked` = 0 AND `contact`.`pending` = 0 AND `item`.`edited` > '%s' $sql_extra ORDER BY `parent` ASC, `created` ASC LIMIT 0, 300", |