Make WordPress Core

Changes between Initial Version and Version 4 of Ticket #3833


Ignore:
Timestamp:
10/31/2007 08:49:47 PM (17 years ago)
Author:
foolswisdom
Comment:

ENV: WP trunk r6301

Confirmed bug exists as described.

The bug won't reproduce if there are no blank lines before the blockquotes, or if there is a paragraph before the blockquote. That likely explains it working for rob1n .

Repro having a block quote by the only text, inserted using visual editor.

Removed that part about blockquote in a list from description.

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3833

    • Property Status changed from new to reopened
    • Property Priority changed from low to normal
    • Property Version changed from 2.1 to 2.3.1
    • Property Milestone changed from 2.1.3 to
    • Property Keywords wpautop autop added
  • Ticket #3833 – Description

    initial v4  
    1111}}}
    1212
    13 If you use blockquotes inside lists and type text after the blockquote is closed, <p> is inserted, but never closed.
    14 
    15 For example:
    16 {{{
    17 <ul>
    18    <li><blockquote>This is a blockquote</blockquote> with more text</li>
    19 </ul>
    20 }}}
    21 
    22 Gives the following result:
    23 {{{
    24 <ul>
    25    <li><blockquote>This is a blockquote</p></blockquote><p> with more text</li>
    26 </ul>
    27 }}}
    28 
    2913Seems like [http://wordpress.org/support/topic/106474 this forum thread] adresses the same issue in the support forum.