This question was cross posted at the same time and answered on cfaussies'
group almost immediately.
But was not followed through with.

On Wed, Aug 19, 2009 at 3:04 PM, Matt Quackenbush <quackfu...@gmail.com>wrote:

>
> The code would certainly help pinpoint exactly where the issue lies, but as
> the error message indicates, it is caused by the fact that somewhere in
> your
> code a variable is declared twice within a function.  This can be caused by
> several factors.  Here are a couple of examples that will do it.
>
> Ex. 1
> <cffunction name="foo">
>    <cfargument name="bar" />
>
>    <cfset var bar = "" />
> </cffunction>
>
>
> Ex. 2
> <cffunction name="foo">
>      <cfscript>
>            var err = "";
>
>            try {
>               // code here
>            } catch (any err) {
>            }
>      </cfscript>
> </cffunction>
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
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:325544
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