diff options
author | Andrew Manning <tamanning@zoho.com> | 2016-12-08 20:34:21 -0500 |
---|---|---|
committer | Andrew Manning <tamanning@zoho.com> | 2016-12-08 20:34:21 -0500 |
commit | 5a17f86f1a3c602fcd7a051c9890e304e27d5c49 (patch) | |
tree | b5408e695f518ada173f6b4bae315e88a46b2d12 | |
parent | c989a94916c8428f71aa52e12dd02b376f85aa3a (diff) | |
parent | 8b57add89151703b163615df177db6f632435ba8 (diff) | |
download | volse-hubzilla-5a17f86f1a3c602fcd7a051c9890e304e27d5c49.tar.gz volse-hubzilla-5a17f86f1a3c602fcd7a051c9890e304e27d5c49.tar.bz2 volse-hubzilla-5a17f86f1a3c602fcd7a051c9890e304e27d5c49.zip |
Merge remote-tracking branch 'upstream/dev' into doco
-rwxr-xr-x | include/items.php | 40 |
1 files changed, 16 insertions, 24 deletions
diff --git a/include/items.php b/include/items.php index 3bbd4cce3..9bd256d58 100755 --- a/include/items.php +++ b/include/items.php @@ -1847,18 +1847,22 @@ function item_store($arr, $allow_exec = false, $deliver = true) { call_hooks('post_remote_end',$arr); - // update the commented timestamp on the parent + // update the commented timestamp on the parent - unless this is potentially a clone of an older item + // which we don't wish to bring to the surface. As the queue only holds deliveries for 3 days, it's + // suspected of being an older cloned item if the creation time is older than that. - $z = q("select max(created) as commented from item where parent_mid = '%s' and uid = %d and item_delayed = 0 ", - dbesc($arr['parent_mid']), - intval($arr['uid']) - ); + if($arr['created'] > datetime_convert('','','now - 4 days')) { + $z = q("select max(created) as commented from item where parent_mid = '%s' and uid = %d and item_delayed = 0 ", + dbesc($arr['parent_mid']), + intval($arr['uid']) + ); - q("UPDATE item set commented = '%s', changed = '%s' WHERE id = %d", - dbesc(($z) ? $z[0]['commented'] : (datetime_convert())), - dbesc(datetime_convert()), - intval($parent_id) - ); + q("UPDATE item set commented = '%s', changed = '%s' WHERE id = %d", + dbesc(($z) ? $z[0]['commented'] : (datetime_convert())), + dbesc(datetime_convert()), + intval($parent_id) + ); + } // If _creating_ a deleted item, don't propagate it further or send out notifications. @@ -1999,20 +2003,8 @@ function item_store_update($arr,$allow_exec = false, $deliver = true) { $arr['commented'] = $orig[0]['commented']; - if($deliver) { - $arr['received'] = datetime_convert(); - $arr['changed'] = datetime_convert(); - } - else { - - // When deliver flag is false, we are *probably* performing an import or bulk migration. - // If one updates the changed timestamp it will be made available to zotfeed and delivery - // will still take place through backdoor methods. Since these fields are rarely used - // otherwise, just preserve the original timestamp. - - $arr['received'] = $orig[0]['received']; - $arr['changed'] = $orig[0]['changed']; - } + $arr['received'] = $orig[0]['received']; + $arr['changed'] = $orig[0]['changed']; $arr['route'] = ((array_key_exists('route',$arr)) ? trim($arr['route']) : $orig[0]['route']); $arr['diaspora_meta'] = ((x($arr,'diaspora_meta')) ? $arr['diaspora_meta'] : $orig[0]['diaspora_meta']); |