I'm not sure this applies to you. As it stands, this bug applies to a user
whose role has changed, which isn't something you are seeing. If you do
continue to use cookie for the login storage, _please_ remember that your
session variables and login info is NOT tied together. You will want to make
sure you keep them in sync.

I believe I used to this like so:

<cfif not isDefined("session.somemarkervariable")>
<!--- session died, kill login too --->
<cflogout>
</cfif>

<cflogin>
<!--- if they are here, they are logged out, kill session vars
automatically --->
<cfset structDelete(session,"somemarkerariable")>
etc
</cflogin>
[Todays Threads] [This Message] [Subscription] [Fast Unsubscribe] [User Settings]

Reply via email to