diff --git a/core/modules/taxonomy/src/Form/OverviewTerms.php b/core/modules/taxonomy/src/Form/OverviewTerms.php index 6164f9a..503de23 100644 --- a/core/modules/taxonomy/src/Form/OverviewTerms.php +++ b/core/modules/taxonomy/src/Form/OverviewTerms.php @@ -576,7 +576,8 @@ protected function getTermsWithPendingRevisions(VocabularyInterface $vocabulary) $query = $this->storageController->getQuery() ->condition($entity_type->getKey('bundle'), $vocabulary->id(), '=') - ->sort($entity_type->getKey('revision'), 'DESC'); + ->sort($entity_type->getKey('revision'), 'DESC') + ->accessCheck(FALSE); $default_revisions = $query->execute(); $latest_revisions = (clone $query)