Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #3833, comment 25


Ignore:
Timestamp:
10/04/2012 05:17:56 PM (12 years ago)
Author:
MikeHansenMe
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3833, comment 25

    initial v1  
    1 This problem seems to be fixed now in 3.5-alpha-21751. I am unable to recreate the problem in the editor or by using the code example above.
     1UPDATE::
     2after looking into the problem further I was able to reproduce the above behavior.
     3
     4 wpautop('<blockquote>This is a blockquote</blockquote>');
     5returns
     6
     7{{{
     8<blockquote><p>This is a blockquote</p></blockquote>
     9}}}
     10and
     11wpautop('<p><blockquote>This is a blockquote</blockquote></p>');
     12{{{
     13<p>
     14<blockquote>This is a blockquote</p></blockquote>
     15}}}