Topic: Editor escapes html into scrambled mess
Here's my problem: I enter news item using either the CKeditor or the original. I add a table, then insert an image into the table. It looks OK, until I preview it or re-open the news item and the html gets scrambled with all the quotes escaped with slashes.
Original html:
<table align="left" border="0" cellpadding="1" cellspacing="1" style="width: 250px;">
<tbody>
<tr>
<td><img alt="" src="http://www.mysite.com/cnews/uploads/37660_175.jpg" style="width: 250px; height: 250px;" /></td>
</tr>
<tr>
<td>This is my picture</td>
</tr>
</tbody>
</table>
and this is the html after preview or reopening:
<table align="\"left\"" alt="\"\"" border="\"0\"" cellpadding="\"1\"" cellspacing="\"1\"" height:="" img="" src="\" style="\"width:">
<tbody>
<tr>
<td>This is my picture</td>
</tr>
</tbody>
</table>
and if I use quotes in the news item, I can end up with //////" in the display
I am using Firefox 23.1, my server is using linux running PHP 5.2.10 and my host will be upgrading me to 5.5 soon. I am using CuteNews 2.0, however I tried dropping back to 1.5.3 and I got the same results.
Any assistance would be appreciated, I have looked through your forums, but I seem to be the only one to have had this problem.
-Thanks