dreamweaver cs4 moving/breaking code!
Hi,
Could someone please shed some light on the following - it must be a bug. I have disabled code rewriting in dreamweaver cs4 for mac, yet it continues to shift my code around.
example test.cfm:
<cfswitch expression="#template.section#">
<cfcase value="head">
<style type="text/css">
.footer { margin-bottom:30px; text-align:center; }
</style>
</cfcase>
<cfcase value="body">
<table>
<tr>
<td></td>
</tr>
</table>
</cfcase>
</cfswitch>
-----------------------
Pretty simple code, yet if I OPEN that in DW cs4 on mac, it moves the last cfcase to the end of the code and therefore breaks the code - like so:
<cfswitch expression="#template.section#">
<cfcase value="head">
<style type="text/css">
.footer { margin-bottom:30px; text-align:center; }
</style>
</cfcase>
<cfcase value="body">
<table>
<tr>
<td></td>
</tr>
</table>
</cfswitch>
</cfcase>
-------
This happens with several of my templates - DW for me is unusable like this...
thanks.
