diff --git a/core/lib/Drupal/Core/Entity/EntityListBuilder.php b/core/lib/Drupal/Core/Entity/EntityListBuilder.php index d4531bcbf198b44cdab518d877d844e6c66f4e7e..04bd9a8ee9663af3100f6f2c999f3bb9f449df78 100644 --- a/core/lib/Drupal/Core/Entity/EntityListBuilder.php +++ b/core/lib/Drupal/Core/Entity/EntityListBuilder.php @@ -95,7 +95,7 @@ public function load() { * An array of entity IDs. */ protected function getEntityIds() { - return $this->getQuery()->execute(); + return $this->getEntityListQuery()->execute(); } /** @@ -104,7 +104,7 @@ protected function getEntityIds() { * @return \Drupal\Core\Entity\Query\QueryInterface * A query object used to load entity IDs. */ - protected function getQuery(): QueryInterface { + protected function getEntityListQuery(): QueryInterface { $query = $this->getStorage()->getQuery() ->accessCheck(TRUE) ->sort($this->entityType->getKey('id'));