- Issue created by @sametyaman
In the Dropdown Language module, there's a missing access control setting in entity queries. This omission causes a QueryException
due to the requirement that entity queries explicitly set access checks, as per Drupal's best practices.
QueryException
error related to access checks in the logs or on-screen.To resolve this issue, update the entity query within the Dropdown Language module to set access control explicitly by including $query->accessCheck(TRUE);
. This will ensure the correct access checking is applied to the entity query.
accessCheck(TRUE)
on the entity query.No user interface changes are expected as a result of this fix.
No API changes are anticipated.
No changes to the data model are required.
Active
4.0
Code