[TASK] Port deprecated hook logoff_post_processing to EventListener - #14
Open
YKWeyer wants to merge 1 commit into
Open
[TASK] Port deprecated hook logoff_post_processing to EventListener#14YKWeyer wants to merge 1 commit into
YKWeyer wants to merge 1 commit into
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Issue
Backend-Users who logged in through Shibboleth cannot log-out anymore, they will always be redirected to the backend interface with a (new) valid session.
According to Breaking: #100963 - Deprecated functionality removed,
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['t3lib/class.t3lib_userauth.php']['logoff_post_processing']was removed in TYPO3 v13.0 and should be migrated to the PSR-14 event\TYPO3\CMS\Core\Authentication\Event\AfterUserLoggedOutEventintroduced in TYPO3 v12.3Changes
The
UserAuthenticationHook was turned into an eventListener.