Oh your exactly right, my previous post proved it.  In the function I have a
query named "updateUser" that is replacing the function.

Thanks for the help. 

-----Original Message-----
From: Ian Skinner [mailto:[EMAIL PROTECTED] 
Sent: Friday, June 09, 2006 11:07 AM
To: CF-Talk
Subject: RE: Calling the same UDF twice..


You define a function (some arbitrary function)

<cffunction name="fun1">
                HI
</cffunction>


And then can't call it twice in a row?

<cfset fun1()>
<cfset fun1()>

Do you do anything to the fun1 value?  The variable can be redefined at any
time to be something other then a function.

Either of these would be a problem

<cfunction name="fun1">
        <cfset fun1 = "HI">
</cfunction>

OR 
<cfoutput>#fun1()#</cfoutput>
<cfset fun1 = "George">
<cfoutput>#fun1()#</cfoutput>

I suspect something closer to the former issue from what you have described.


--------------
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

---------
| 1 |   |
---------  Binary Soduko
|   |   |
---------
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 






~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:243064
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to