diff --git a/core/modules/taxonomy/src/Entity/Term.php b/core/modules/taxonomy/src/Entity/Term.php index 2e41e2d0f01654f1649da2e8392efbd8df46e9c1..c8ef06e5a48bad8763974cb750e17d377b3114b9 100644 --- a/core/modules/taxonomy/src/Entity/Term.php +++ b/core/modules/taxonomy/src/Entity/Term.php @@ -68,7 +68,7 @@ public static function postDelete(EntityStorageInterface $storage, array $entiti // If the term has multiple parents, we don't delete it. $parents = $storage->loadParents($child->id()); if (empty($parents)) { - $orphans[] = $child->id(); + $orphans[] = $child; } } } @@ -79,7 +79,7 @@ public static function postDelete(EntityStorageInterface $storage, array $entiti $storage->deleteTermHierarchy(array_keys($entities)); if (!empty($orphans)) { - entity_delete_multiple('taxonomy_term', $orphans); + $storage->delete($orphans); } }