Hello,
I had to add the following code to the CF_Location tag in order to get the
addToken Attribute to work when just Session variables where used. If I
turned off Client Variables and turned on Session Variables it would tell
me that one of the 2 had to be turned on in order to use the addToken
attribute. I added this code at line 62 just before the lines that read
"<!--- try to addToken --->
<CFIF attributes.addToken IS true>"
<!--- added by Terry Stewart to fix problem where clientmanagement had to
be set in order for this tag to work --->
<CFLOCK SCOPE="Session" TYPE="READONLY" TIMEOUT="5">
<CFIF isDefined("Session.CFID")>
<CFSET CFID = Session.CFID>
</CFIF>
<CFIF isDefined("Session.CFTOKEN")>
<CFSET CFTOKEN = Session.CFTOKEN>
</CFIF>
</CFLOCK>
------------------------------------------------------------------------------
To Unsubscribe visit
http://www.houseoffusion.com/index.cfm?sidebar=lists&body=lists/fusebox or send a
message to [EMAIL PROTECTED] with 'unsubscribe' in the body.