aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMario Vavti <mario@mariovavti.com>2019-03-24 15:49:03 +0100
committerMario Vavti <mario@mariovavti.com>2019-03-24 15:49:03 +0100
commit28c32594498d91bf2307eba19bd9f58af217eb68 (patch)
tree8f0198948460a436823e490937dfe3e46d79f81b
parent0d0ede7b14bcfa79340d52ad934fc0c186aa4c02 (diff)
downloadvolse-hubzilla-28c32594498d91bf2307eba19bd9f58af217eb68.tar.gz
volse-hubzilla-28c32594498d91bf2307eba19bd9f58af217eb68.tar.bz2
volse-hubzilla-28c32594498d91bf2307eba19bd9f58af217eb68.zip
Revert "item_store(): deduplicate by mid OR uuid"
This reverts commit 0d0ede7b14bcfa79340d52ad934fc0c186aa4c02.
-rwxr-xr-xinclude/items.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/include/items.php b/include/items.php
index 6857964fb..c9c2e2d48 100755
--- a/include/items.php
+++ b/include/items.php
@@ -1930,9 +1930,8 @@ 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' OR uuid = '%s') AND uid = %d and revision = %d LIMIT 1",
+ $r = q("SELECT id FROM item WHERE mid = '%s' AND uid = %d and revision = %d LIMIT 1",
dbesc($arr['mid']),
- dbesc($arr['uuid']),
intval($arr['uid']),
intval($arr['revision'])
);