diff options
author | Mario <mario@mariovavti.com> | 2024-12-08 22:46:21 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-12-08 22:46:21 +0000 |
commit | 7785487d776cdb5117f9a9206da9557ad2f59d0f (patch) | |
tree | 9f0da496b1d321d925cf0cc50af5e5efccbe711a /include | |
parent | 9756023e39cb58081b68644e23322cb69c8f0833 (diff) | |
download | volse-hubzilla-7785487d776cdb5117f9a9206da9557ad2f59d0f.tar.gz volse-hubzilla-7785487d776cdb5117f9a9206da9557ad2f59d0f.tar.bz2 volse-hubzilla-7785487d776cdb5117f9a9206da9557ad2f59d0f.zip |
fix delayed post handling in cron, always set item_delayed if we select a create date
Diffstat (limited to 'include')
-rw-r--r-- | include/items.php | 10 |
1 files changed, 0 insertions, 10 deletions
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']; } |