diff options
author | zotlabs <mike@macgirvin.com> | 2017-01-25 14:40:04 -0800 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-01-25 14:40:04 -0800 |
commit | 5bc6941b577f59784dd2eb46c7dae32862b52576 (patch) | |
tree | 885e22d1f83cbf98b9866fa8ea4f4c3804ee22cd /include/items.php | |
parent | 45dbd31d286838254cd1ae60e4ebb39c112526be (diff) | |
download | volse-hubzilla-5bc6941b577f59784dd2eb46c7dae32862b52576.tar.gz volse-hubzilla-5bc6941b577f59784dd2eb46c7dae32862b52576.tar.bz2 volse-hubzilla-5bc6941b577f59784dd2eb46c7dae32862b52576.zip |
resolve the linked item delete issue by declaring what types of linked items cannot be deleted
Diffstat (limited to 'include/items.php')
-rwxr-xr-x | include/items.php | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/items.php b/include/items.php index 66ec2ffea..8213ab161 100755 --- a/include/items.php +++ b/include/items.php @@ -3343,6 +3343,11 @@ function drop_items($items,$interactive = false,$stage = DROPITEM_NORMAL,$force function drop_item($id,$interactive = true,$stage = DROPITEM_NORMAL,$force = false) { + // These resource types have linked items that should only be removed at the same time + // as the linked resource; if we encounter one set it to item_hidden rather than item_deleted. + + $linked_resource_types = [ 'photo' ]; + // locate item to be deleted $r = q("SELECT * FROM item WHERE id = %d LIMIT 1", @@ -3358,7 +3363,7 @@ function drop_item($id,$interactive = true,$stage = DROPITEM_NORMAL,$force = fal $item = $r[0]; - $linked_item = (($item['resource_id']) ? true : false); + $linked_item = (($item['resource_id'] && $item['resource_type'] && in_array($linked_resource_types,$item['resource_type'])) ? true : false); $ok_to_delete = false; |