Skip to content
Snippets Groups Projects
Commit 05f83aae authored by Oliver Bartsch's avatar Oliver Bartsch Committed by Benni Mack
Browse files

[BUGFIX] Fix display of login message in EXT:felogin

The template now evaluates the correct variable for
checking whether the login message should be
displayed on the overview page.

Resolves: #92939
Releases: master, 10.4
Change-Id: I54dd4759b3154be5e57cc38df89a52e22c838f63
Reviewed-on: https://review.typo3.org/c/Packages/TYPO3.CMS/+/67049


Tested-by: default avatarTYPO3com <noreply@typo3.com>
Tested-by: default avatarSimon Gilli <typo3@gilbertsoft.org>
Tested-by: default avatarBenni Mack <benni@typo3.org>
Reviewed-by: default avatarSimon Gilli <typo3@gilbertsoft.org>
Reviewed-by: default avatarBenni Mack <benni@typo3.org>
parent 50d7c6f5
Branches
Tags
No related merge requests found
......@@ -4,12 +4,10 @@
<f:render partial="CookieWarning"/>
</f:if>
<f:if condition="{loginMessage}">
<f:then>
<h3>
<f:render partial="RenderLabelOrMessage" arguments="{key: 'success_header'}"/>
</h3>
</f:then>
<f:if condition="{showLoginMessage}">
<h3>
<f:render partial="RenderLabelOrMessage" arguments="{key: 'success_header'}"/>
</h3>
</f:if>
<f:translate key="login_user_info" arguments="{0: '{user.username}'}"/>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment