From 90ab0d963bf5074643c6f275dbb8595b6c51a03d Mon Sep 17 00:00:00 2001 From: friendica Date: Thu, 7 Nov 2013 22:45:13 -0800 Subject: we should probably only expire things once... --- include/poller.php | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'include/poller.php') diff --git a/include/poller.php b/include/poller.php index e5a274758..3c4e6402c 100644 --- a/include/poller.php +++ b/include/poller.php @@ -47,7 +47,10 @@ function poller_run($argv, $argc){ q("delete from mail where expires != '0000-00-00 00:00:00' and expires < UTC_TIMESTAMP() "); - $r = q("select id from item where expires != '0000-00-00 00:00:00' and expires < UTC_TIMESTAMP() "); + $r = q("select id from item where expires != '0000-00-00 00:00:00' and expires < UTC_TIMESTAMP() + and not ( item_restrict & %d ) ", + intval(ITEM_DELETED) + ); if($r) { require_once('include/items.php'); foreach($r as $rr) -- cgit v1.2.3