aboutsummaryrefslogtreecommitdiffstats
path: root/include/items.php
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-03-24 15:51:31 +0100
committerMario Vavti <mario@mariovavti.com>2019-03-24 15:51:31 +0100
commitd8ce0d0df0b7b58b3f2a1abfc26f455fb943f8ea (patch)
tree564fd423b7845e4d096356e2141f0b926185ae12 /include/items.php
parent9ebf6bcc92acb03fbdc237e8e44f5391586b42cb (diff)
downloadvolse-hubzilla-d8ce0d0df0b7b58b3f2a1abfc26f455fb943f8ea.tar.gz
volse-hubzilla-d8ce0d0df0b7b58b3f2a1abfc26f455fb943f8ea.tar.bz2
volse-hubzilla-d8ce0d0df0b7b58b3f2a1abfc26f455fb943f8ea.zip
item_store(): deduplicate by mid OR uuid
Diffstat (limited to 'include/items.php')
-rwxr-xr-xinclude/items.php3
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'])
);