>> -----Original Message----- >> From: John McCosker [mailto:[EMAIL PROTECTED] >> Sent: 25 September 2003 13:55 >> To: CF-Talk >> Subject: RE: mx 6.1 upgrade >> >> Ok, >> >> problem seems to have been solved, >> I had to delete all datasources in admin and set them back up again. >> >> That Migration ran well..., >> >> I'm now have having strange problems with my code, >> using FBX 3.0 and inside a case block I do the following, >> >> <CFPARAM NAME="Attributes.WithinInBox" DEFAULT=""> >> then I call CFMODULE, >> <CFMODULE TEMPLATE="#Request.fbxarc_Path#act_archivedDirectories.cfm" >> RECURSIVE="YES"> >> I'm looking for the lowest directory so I recurse through until I get it, >> >> then inside act_archivedDirectories.cfm >> >> <CFIF ISDEFINED("Attributes.RECURSIVE")> >> <CFSET CALLER.Attributes.WithinInBox=WithinInBox> >> </CFIF>
I noticed you're not passing "WithinInBox" to the custom tag act_archivedDirectories. IIRC fusebox places url and form vars in the attributes scope However the attributes scope is not visible from a further nested custom tag and needs to be either passed in or placed in the request scope to be visible to the custom tag. Also if this worked correctly under CF6 then I would check the redsky documentation for any changes which may effect your custom tag. Kola ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Message: http://www.houseoffusion.com/lists.cfm?link=i:4:138417 Archives: http://www.houseoffusion.com/lists.cfm?link=t:4 Subscription: http://www.houseoffusion.com/lists.cfm?link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 ColdFusion MX 6.1, now 2.5 times faster. http://www.macromedia.com/software/coldfusion/productinfo/upgrade/jump/introducing.html?trackingid=ColdFusion_468x60g_HouseofFusion_carat_082803

