csgaraglino wrote: <cf_icwsForm2db action="store" formData="#form#" emailTo="#evaluate(icwsUserEmail)#" storeEmailLists="#icwsEmailLists2db#" verificationID="#verificationID#" verificationVAR="#verificationVAR#"> |
That is the code that calls the custom tag. It doesn't really tell one much about what the custom tag actually does.
It's what is going on in the icwsForm2db.cfm file that matters. This could very well be another place the "pointer" versus "copy" is getting you. Before Java, formData="#form#" was probably creating a copy. Now it is creating a pointer, and as a pointer anything done to the data via the pointer is done to the original since they are one and the same data in the same location in memory.
ilssac wrote: csgaraglino wrote: <cf_icwsForm2db action="store" formData="#form#" emailTo="#evaluate(icwsUserEmail)#" storeEmailLists="#icwsEmailLists2db#" verificationID="#verificationID#" verificationVAR="#verificationVAR#"> |
Sorry I didn't note this earlier. But the quick simple fix to make it work like is sounds like it was working on the CF5 system, would be to apply the same lesson from your other post.
<cf_icwsForm2db
action="store"
formData="#duplicate(form)#"
emailTo="#evaluate(icwsUserEmail)#"
storeEmailLists="#icwsEmailLists2db#"
verificationID="#verificationID#"
verificationVAR="#verificationVAR#">