vote up 3 vote down star

An HTML template is passed to Coldfusion. The head tag of the template has additional attribute:

<head profile="http://abc.com">

The issue is that when generating the output based on this template Coldfusion injects its scripts inside the head tag:

<head <script type="text/javascript" src="/CFIDE/scripts/cfform.js"></script>
<script type="text/javascript" src="/CFIDE/scripts/masks.js"></script>
profile="http://abc.com">

This causes profile="http://abc.com"> to appear on the top of the page and prevents page from validation.

The code injection occurs only when there is a form tag. The wrong-place injection does not happen if the head tag does not have any attributes. The presence of the attribute is a project requirement and cannot be omitted.

Is it possible to prevent Coldfusion from injecting the scripts?

flag

40% accept rate
Definitely a ColdFusion bug. You can report it to adobe here: adobe.com/cfusion/mmform/… – Kip Sep 25 at 14:31
If you submit the bug report, you may also want to include this link to show that a profile attribute in the head tag is perfectly valid HTML: w3schools.com/tags/tag_head.asp – Kip Sep 25 at 14:33
@Kip Thanks for the suggestion. Have just submitted a bug to Adobe. – Alex Sep 25 at 15:15
@Alex - IIRC, I think custom tags might offer a way around the placement issue. While far from ideal, would a custom tag hack help here at all: forums.adobe.com/thread/472576 ? – Leigh Sep 25 at 15:51
CF8 or CF9?? – Henry Sep 25 at 18:44
show 2 more comments

1 Answer

vote up 3 vote down check

The script injection only happens for cfforms, not standard forms. If you aren't using any of cfform's enhancements, you can simply switch to a standard form.

I checked the cumulative hotfix list, and didn't see a fix for this.

link|flag
@Ben Thanks for the suggestion. That's what probably I'll end up doing. I'm so not looking forward rewriting the existing code. Do you know if this issue is listed as a bug anywhere? – Alex Sep 25 at 14:10
I don't know if there is a public bug listing. I'd suggest you submit it, as Kip suggested. – Ben Doom Sep 25 at 15:29
1  
There is a public bug tracker here: cfbugs.adobe.com/cfbugreport/flexbugui/… – Ian Sep 25 at 16:07
I'll have to bookmark that. – Ben Doom Sep 25 at 17:53

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.