- Issue created by @KrishnaveniUppara
- Status changed to Needs work
over 1 year ago 12:41pm 18 July 2023 - ๐ฎ๐นItaly apaderno Brescia, ๐ฎ๐น
- $entity = $this->entityTypeManager->getStorage('response_header')->accesCheck(FALSE)->getQuery() + $entity = $this->entityTypeManager->getStorage('response_header')->getQuery()
Actually, the object returned from
getQuery()
has theaccessCheck()
method. The correct code is the following one.$entity = $this->entityTypeManager->getStorage('response_header')->getQuery()->accesCheck(FALSE) ->condition('id', $id) ->execute();
- ๐ฎ๐ณIndia keshavv India
keshav.k โ made their first commit to this issueโs fork.
- @keshavk opened merge request.
- Status changed to Needs review
over 1 year ago 5:44am 19 July 2023 - ๐ฎ๐ณIndia keshavv India
Thank you @apaderno
I have created the MR for the same.
Please Review. - Status changed to RTBC
over 1 year ago 9:34am 19 July 2023 - ๐ฎ๐นItaly apaderno Brescia, ๐ฎ๐น
The MR correctly changes the code.
-
minnur โ
committed 3c61de69 on 8.x-2.x authored by
keshav.k โ
Issue #3375197: Error: Call to undefined method Drupal\Core\Config\...
-
minnur โ
committed 3c61de69 on 8.x-2.x authored by
keshav.k โ
- Status changed to Fixed
over 1 year ago 7:08am 30 July 2023 Automatically closed - issue fixed for 2 weeks with no activity.