im trying to check if the given variable is true or not so i can show different links to the user
<f:if condition="{response.isAuthenticated} == true">
<f:then>
<a href="{response.logoutURL}">logout</a>
</f:then>
<f:else>
<a href="{response.loginURL}">login</a>
</f:else>
</f:if>
the above snippet always returns true
what am i doing wrong ?
im using TYPO3 6.1.3 this a part of an extension built with the extension manager