diff options
author | Mario Vavti <mario@mariovavti.com> | 2019-03-24 15:51:31 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2019-03-24 15:51:31 +0100 |
commit | d8ce0d0df0b7b58b3f2a1abfc26f455fb943f8ea (patch) | |
tree | 564fd423b7845e4d096356e2141f0b926185ae12 | |
parent | 9ebf6bcc92acb03fbdc237e8e44f5391586b42cb (diff) | |
download | volse-hubzilla-d8ce0d0df0b7b58b3f2a1abfc26f455fb943f8ea.tar.gz volse-hubzilla-d8ce0d0df0b7b58b3f2a1abfc26f455fb943f8ea.tar.bz2 volse-hubzilla-d8ce0d0df0b7b58b3f2a1abfc26f455fb943f8ea.zip |
item_store(): deduplicate by mid OR uuid
-rwxr-xr-x | include/items.php | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index c9c2e2d48..6857964fb 100755 --- a/include/items.php +++ b/include/items.php @@ -1930,8 +1930,9 @@ function item_store($arr, $allow_exec = false, $deliver = true) { if($parent_deleted) $arr['item_deleted'] = 1; - $r = q("SELECT id FROM item WHERE mid = '%s' AND uid = %d and revision = %d LIMIT 1", + $r = q("SELECT id FROM item WHERE (mid = '%s' OR uuid = '%s') AND uid = %d and revision = %d LIMIT 1", dbesc($arr['mid']), + dbesc($arr['uuid']), intval($arr['uid']), intval($arr['revision']) ); |