Do you think this could have anything to do with the fact that this
function
is being stored in the application scope?

=======

Yes, it has everything to do with that.  You need to var EVERY variable
used in that function.  Otherwise it is shared by everyone calling your
code at the exact same time

getTranslation and varName need to be varred like so at the top of the
function.

<cfset var getTranslation = "">
<cfset var varName = "">


~Brad


~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:323601
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to