Loading core/lib/Drupal/Core/Entity/EntityListBuilder.php +2 −2 Original line number Diff line number Diff line Loading @@ -95,7 +95,7 @@ public function load() { * An array of entity IDs. */ protected function getEntityIds() { return $this->getQuery()->execute(); return $this->getEntityListQuery()->execute(); } /** Loading @@ -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')); Loading Loading
core/lib/Drupal/Core/Entity/EntityListBuilder.php +2 −2 Original line number Diff line number Diff line Loading @@ -95,7 +95,7 @@ public function load() { * An array of entity IDs. */ protected function getEntityIds() { return $this->getQuery()->execute(); return $this->getEntityListQuery()->execute(); } /** Loading @@ -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')); Loading