From 7785487d776cdb5117f9a9206da9557ad2f59d0f Mon Sep 17 00:00:00 2001 From: Mario Date: Sun, 8 Dec 2024 22:46:21 +0000 Subject: fix delayed post handling in cron, always set item_delayed if we select a create date --- include/items.php | 10 ---------- 1 file changed, 10 deletions(-) (limited to 'include') diff --git a/include/items.php b/include/items.php index dbf7d104a..037846e02 100644 --- a/include/items.php +++ b/include/items.php @@ -1791,16 +1791,6 @@ function item_store($arr, $allow_exec = false, $deliver = true, $addAndSync = tr if((! array_key_exists('item_nocomment',$arr)) && ($arr['comment_policy'] == 'none')) $arr['item_nocomment'] = 1; - // handle time travelers - // Allow a bit of fudge in case somebody just has a slightly slow/fast clock - - $d1 = new DateTime('now +10 minutes', new DateTimeZone('UTC')); - $d2 = new DateTime($arr['created'] . '+00:00'); - - if($d2 > $d1) { - $arr['item_delayed'] = 1; - } - if(empty($arr['llink'])) { $arr['llink'] = z_root() . '/display/' . $arr['uuid']; } -- cgit v1.2.3