[cfaussie] Weird CFML syntax error.

2010-10-24 Thread Gavin Beau Baumanis
Hi Everyone, I was recently in an area of our application that is seldom used and I got an error about misformed CFML. I think it was something like a missing the closing cfif tag - anyway... Here is the patch that corrected it - but my question is why? Index:

Re: [cfaussie] Weird CFML syntax error.

2010-10-24 Thread Phil Haeusler
Hi Gavin It looks like you had a mismatched comment there. You started with a CF comment !--- but tried closing it with a HTML comment -- - that's not going to work. The fix to make it --- would have fixed the invalid cfml syntax. Phil On 25/10/10 11:50 AM, Gavin Beau Baumanis wrote: Hi

Re: [cfaussie] Weird CFML syntax error.

2010-10-24 Thread Gavin Beau Baumanis
Thanks Steve and Phil, I am an idiot For some reason I thought it was the other way around! Must be time for some coffee! I also worked why the revert did not re-throw the error too - I had not sent the change to the staging server must be one of those days!!! Thanks for the replies...