We shouldn't cascade this deletion as well (#5558)

This commit is contained in:
Michael Vogel 2018-08-05 11:02:36 +02:00 committed by Hypolite Petovan
parent 2f2b134e58
commit 8dea36bd8f
1 changed files with 1 additions and 1 deletions

View File

@ -1065,7 +1065,7 @@ class Item extends BaseObject
// When the permission set will be used in photo and events as well,
// this query here needs to be extended.
if (!empty($item['psid']) && !DBA::exists('item', ['psid' => $item['psid'], 'deleted' => false])) {
DBA::delete('permissionset', ['id' => $item['psid']]);
DBA::delete('permissionset', ['id' => $item['psid']], ['cascade' => false]);
}
// If it's the parent of a comment thread, kill all the kids