You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
you have a missing use statement in \Bednarik\Cooluri\Integration\CoolPageResolver. When a backend user is viewing a page in the frontend, that he doesn't have access an exception is thrown because of that.
The error is in this line: $this->setBackendUserAspect(\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(Context::class), null); (line 66 in version 1.2.2)
It can be resolved by adding this statement below the namespace: use TYPO3\CMS\Core\Context\Context;
The text was updated successfully, but these errors were encountered:
Hi,
you have a missing use statement in \Bednarik\Cooluri\Integration\CoolPageResolver. When a backend user is viewing a page in the frontend, that he doesn't have access an exception is thrown because of that.
The error is in this line:
$this->setBackendUserAspect(\TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(Context::class), null);
(line 66 in version 1.2.2)It can be resolved by adding this statement below the namespace:
use TYPO3\CMS\Core\Context\Context;
The text was updated successfully, but these errors were encountered: