put a lower time limit on time travellers

This commit is contained in:
friendica 2015-03-22 18:23:37 -07:00
parent 2bd19e6b51
commit ccef9e5636

View File

@ -82,11 +82,13 @@ function poller_run($argv, $argc){
}
// publish any applicable items that were set to be published in the future
// (time travel posts)
// (time travel posts). Restrict to items that have come of age in the last
// couple of days to limit the query to something reasonable.
$r = q("select id from item where ( item_restrict & %d ) > 0 and created <= %s ",
$r = q("select id from item where ( item_restrict & %d ) > 0 and created <= %s and created > '%s' ",
intval(ITEM_DELAYED_PUBLISH),
db_utcnow()
db_utcnow(),
dbesc(datetime_convert('UTC','UTC','now - 2 days'))
);
if($r) {
foreach($r as $rr) {