Only delete undeleted items
This commit is contained in:
parent
fc60e23314
commit
82937189ba
|
@ -189,7 +189,7 @@ class Item extends BaseObject
|
||||||
|
|
||||||
// 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
|
||||||
if ($item['id'] == $item['parent']) {
|
if ($item['id'] == $item['parent']) {
|
||||||
self::delete(['parent' => $item['parent']], $priority);
|
self::delete(['parent' => $item['parent'], 'deleted' => false], $priority);
|
||||||
}
|
}
|
||||||
|
|
||||||
// Is it our comment and/or our thread?
|
// Is it our comment and/or our thread?
|
||||||
|
|
Loading…
Reference in a new issue