]> git.mxchange.org Git - friendica.git/blobdiff - src/Worker/RemoveContact.php
Replaced quotes
[friendica.git] / src / Worker / RemoveContact.php
index 08c7c23a77c5c077a61abe7d3b9b417b7646aeeb..00027dca40a2e46dd2b78352a274885634ff0519 100644 (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));