aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2015-01-06 15:45:00 -0800
committerfriendica <info@friendica.com>2015-01-06 15:45:00 -0800
commita1e5a661fa8f87793cab0fe9c34f507dafb65d99 (patch)
tree4cda080f723f404eccf498c0fc9167fbfc19170b
parentf8151a33e20d66548ba035879f1159e4c958eb1c (diff)
parentfbe0610ce9a4ef62da8aba166250485f56e73d03 (diff)
downloadvolse-hubzilla-a1e5a661fa8f87793cab0fe9c34f507dafb65d99.tar.gz
volse-hubzilla-a1e5a661fa8f87793cab0fe9c34f507dafb65d99.tar.bz2
volse-hubzilla-a1e5a661fa8f87793cab0fe9c34f507dafb65d99.zip
Merge branch 'master' into trinidad
-rw-r--r--include/zot.php11
1 files changed, 8 insertions, 3 deletions
diff --git a/include/zot.php b/include/zot.php
index c88b2a369..c21ad8a3f 100644
--- a/include/zot.php
+++ b/include/zot.php
@@ -1542,15 +1542,20 @@ function process_delivery($sender,$arr,$deliveries,$relay,$public = false,$reque
continue;
}
- $r = q("select id, edited, item_flags, mid, parent_mid from item where mid = '%s' and uid = %d limit 1",
+ $r = q("select id, edited, item_restrict, item_flags, mid, parent_mid from item where mid = '%s' and uid = %d limit 1",
dbesc($arr['mid']),
intval($channel['channel_id'])
);
if($r) {
// We already have this post.
- // Maybe it has been edited?
$item_id = $r[0]['id'];
- if($arr['edited'] > $r[0]['edited']) {
+ if($r[0]['item_restrict'] & ITEM_DELETED) {
+ // It was deleted locally.
+ $result[] = array($d['hash'],'update ignored',$channel['channel_name'] . ' <' . $channel['channel_address'] . '@' . get_app()->get_hostname() . '>',$arr['mid']);
+ continue;
+ }
+ // Maybe it has been edited?
+ elseif($arr['edited'] > $r[0]['edited']) {
$arr['id'] = $r[0]['id'];
$arr['uid'] = $channel['channel_id'];
update_imported_item($sender,$arr,$channel['channel_id']);