- Issue created by @szato
- @szato opened merge request.
- Issue was unassigned.
- Status changed to Needs review
over 1 year ago 8:35pm 20 July 2023 -
joseph.olstad →
committed f52f44a2 on 2.0.x authored by
szato →
Issue #3375956: QueryInterface::accessCheck is required on Drupal 10
-
joseph.olstad →
committed f52f44a2 on 2.0.x authored by
szato →
- Status changed to Fixed
over 1 year ago 6:07pm 21 July 2023 Automatically closed - issue fixed for 2 weeks with no activity.
- Status changed to Fixed
5 days ago 7:29pm 16 December 2024 - 🇫🇷France erwangel
if (empty($vocs)) {
$query = $this->entityTypeManager()
->getStorage('taxonomy_vocabulary')
->accessCheck(FALSE)
->getQuery();Should be
if (empty($vocs)) {
$query = $this->entityTypeManager()
->getStorage('taxonomy_vocabulary')
->getQuery()
->accessCheck(FALSE);Otherwise you get "Call to undefined method Drupal\taxonomy\VocabularyStorage::accessCheck"....
-
joseph.olstad →
committed 6b664a24 on 2.0.x
Issue #3375956 by szato, joseph.olstad, erwangel: QueryInterface::...
-
joseph.olstad →
committed 6b664a24 on 2.0.x