There was a bug in 4.5 as well I think which caused Duplicate to not work
properly..cant remember though...think there was.... 

-----Original Message-----
From: Chris Tazewell [mailto:[EMAIL PROTECTED] 
Sent: 05 November 2003 12:37
To: [EMAIL PROTECTED]
Subject: Re: [ cf-dev ] Request scope

> Isn't this only true is you have not copied the value back again...?

It's irrelevant. If you use

<cfset Request.MyVar = Session.MyVar>

and then access Request.MyVar... you're still accessing the shared scope
variable indirectly

You need to use

<cfset Request.MyVar = Duplicate(Session.MyVar)>

Taz



--
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED] For human
help, e-mail: [EMAIL PROTECTED]

-- 
** Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/

To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
For human help, e-mail: [EMAIL PROTECTED]

Reply via email to