﻿id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
19632,TinyMCE producing invalid nested list markup,szotsaki,,"Edit a post either in HTML or in TinyMCE, WP will scramble the <ul> and <li> formatting.
{{{
1.) create a list with an item
2.) use indentation (first with the TMCE buttons, then in HTML)
3.) save and debug
}}}
Example:
{{{
<ul>
    <li>…</li>
    <li>…</li>
    <ul>
        <li>…</li>
        <ul>
            <li>…</li>
            <li>…</li>
            <li>…</li>
        </ul>
        <li>…</li>
    </ul>
</ul>
}}}

The result is:
{{{
<ul>
    <li />
    <li />
</ul>
<ul>
    <li />
</ul>
<ul>
    <li />
    <li />
    <li />
</ul>
<li />
}}}
The only option would be to correct this in database… but somehow I'm not able to do that, because somehow it's still wrong.",defect (bug),closed,normal,,Formatting,3.3,normal,duplicate,,knut@…
