Only delete undeleted items

This commit is contained in:
Michael 2018-05-15 19:25:35 +00:00
parent fc60e23314
commit 82937189ba
1 changed files with 1 additions and 1 deletions

View File

@ -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?