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:325543
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4

Reply via email to