I have ckeditor working on a CMS and have encountered a problem when the code includes a DL structure.
When I post this code in souce:
<dl >
<dt>File:</dt>
<dd>2009-0019</dd>
<dt>Issued at:</dt>
<dd>Ottawa, December 9, 2009</dd>
</dl>
it comes back with the last two tags reversed:
<dl >
<dt>
File:</dt>
<dd>
2009-0019</dd>
<dd>
Ottawa, December 9, 2009</dd>
<dt>
Issued at:</dt>
</dl>
Help?
I'm using version 3.1.
Only seems to happen in IE. Not firefox.
I have used it in other places and it doesn't have this error with a seemingly identical environment.
The point is that the source view toggle seems to trigger this and it should be independant of the environment.
Is it possible to disable the code rewriting/ tidy function??
When I post this code in souce:
<dl >
<dt>File:</dt>
<dd>2009-0019</dd>
<dt>Issued at:</dt>
<dd>Ottawa, December 9, 2009</dd>
</dl>
it comes back with the last two tags reversed:
<dl >
<dt>
File:</dt>
<dd>
2009-0019</dd>
<dd>
Ottawa, December 9, 2009</dd>
<dt>
Issued at:</dt>
</dl>
Help?
I'm using version 3.1.
Only seems to happen in IE. Not firefox.
I have used it in other places and it doesn't have this error with a seemingly identical environment.
The point is that the source view toggle seems to trigger this and it should be independant of the environment.
Is it possible to disable the code rewriting/ tidy function??
Re: definition list DL structure mangled