Bug #67671
closedLogout from Backend throws exception due to malformed URL
0%
Description
Since the refactoring of the User-Box to use fluid, it is no longer possible to logout from the Backend or to switch back to your own user after you switched in the BackenUser module.
The reason is a htmlencoded "&" which is representated as "&" in the URL. So the Module-Token is no longer recognized.
My current logut-URL looks like this:
http://my.core.loc/typo3/mod.php?M=logout&moduleToken=2739b4134abaea55df1c703677d0ac7ff4ab93ca
This URL is produced by the following Code in \TYPO3\CMS\Backend\Backend\ToolbarItems\UserToolbarItem
, line 109
htmlspecialchars(BackendUtility::getModuleUrl('logout'))
Updated by Gerrit Code Review over 9 years ago
- Status changed from New to Under Review
Patch set 1 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/40519
Updated by Gerrit Code Review over 9 years ago
Patch set 2 for branch master of project Packages/TYPO3.CMS has been pushed to the review server.
It is available at http://review.typo3.org/40519
Updated by Christian Kuhn over 9 years ago
- Status changed from Under Review to Resolved
The issue that introduces this regression was reverted, this issue is solved.