I had a problem with the linotype returning a blank page on edit.
I'm using IE 6 on Windows XP.
While the page is blank viewing the source shows all of the content.
I tracked it down to this line in news2edit.xslt
<script src="{$home}/scripts/editor.js"
type="text/javascript"></script>
Which generates:
<script src="[$home]/scripts/editor.js" type="text/javascript" />
IE 6 doesn't like the shorthand version of the close tag and continues
to look for a </script> but doesn't find one [hence blank page].
I fixed the problem by changing the line to:
<script src="{$home}/scripts/editor.js"
type="text/javascript"><![CDATA[
// Force close tag
]]></script>
My question is there a slightly less hacky way of doing this?
Regards
-Alun.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]