The following problem only exists in IE8 and ID9:
If I have the following code in a template:
<div class="vakje_320x170" style="background:url(/gfx/frontpage_bgs/vakje.png) top left no-repeat">
<p>
<img alt="" src="/gfx/frontpage_bgs/afbeelding_dummy.png" /></p>
</div>
And I click save, the CKEditor sends it to PHP like this (checked in phpmyadmin):
<div class="vakje_320x170" style="background: url("/gfx/frontpage_bgs/vakje.png") no-repeat left top;">
<p>
<img alt="" src="/gfx/frontpage_bgs/afbeelding_dummy.png" /></p>
</div>
So it adds those '"' things in it. Problem is, when it reloads the page from the database, it parses it wrong, and the result (when clicking on the Code button) is this:
<div class="vakje_320x170" frontpage_bgs="" gfx="" left="" no-repeat="" style="background: url(">
<p>
<img alt="" src="/gfx/frontpage_bgs/afbeelding_dummy.png" /></p>
</div>
Again, only with IE8 and IE9.
Any ideas how to fix this ? I've already tried setting config.entities and config.basicEntities to false in config.js, but that didn't help.