Partly Reverted #6583

This commit is contained in:
Michael 2019-02-06 07:31:29 +00:00
parent 6436145909
commit b4fc1d6810
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ class RemoveContact {
do {
$items = Item::select(['id'], $condition, ['limit' => 100]);
while ($item = Item::fetch($items)) {
Item::deleteById($item['id'], PRIORITY_NEGLIGIBLE);
DBA::delete('item', ['id' => $item['id']]);
}
DBA::close($items);
} while (Item::exists($condition));