I know that <cfdump var="#cfcatch#"> is dotted around the farcry core
in many places, but I've so far discovered that duplicate(cfcatch)
causes the same problem, and that the following seems to do the trick
(you may or may not find this to be useful):
<cftry>
<cfset s = 1/0>
<cfcatch type="any">
<cfset request.cfdumpinited = false>
<cfset catchdump = dupecatch(cfcatch)>
<cfdump var="#catchdump#">
</cfcatch>
</cftry>
<cffunction name="dupecatch" returntype="struct">
<cfargument name="catch" type="any">
<cfset var stReturn = StructNew()>
<cfset var member = "">
<cfloop collection="#arguments.catch#" item="member">
<cfset stReturn[member] = catch[member]>
</cfloop>
<cfreturn stReturn>
</cffunction>
---
You are currently subscribed to farcry-dev as: [EMAIL PROTECTED]
To unsubscribe send a blank email to [EMAIL PROTECTED]
Aussie Macromedia Developers: http://lists.daemon.com.au/