We shouldn't cascade this deletion as well (#5558)
This commit is contained in:
parent
2f2b134e58
commit
8dea36bd8f
|
@ -1065,7 +1065,7 @@ class Item extends BaseObject
|
||||||
// When the permission set will be used in photo and events as well,
|
// When the permission set will be used in photo and events as well,
|
||||||
// this query here needs to be extended.
|
// this query here needs to be extended.
|
||||||
if (!empty($item['psid']) && !DBA::exists('item', ['psid' => $item['psid'], 'deleted' => false])) {
|
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
|
// If it's the parent of a comment thread, kill all the kids
|
||||||
|
|
Loading…
Reference in a new issue