we should probably only expire things once...

This commit is contained in:
friendica 2013-11-07 22:45:13 -08:00
parent 4b3db9b523
commit 90ab0d963b

View File

@ -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)