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. |
| 1 | UPDATE:: |
| 2 | after looking into the problem further I was able to reproduce the above behavior. |
| 3 | |
| 4 | wpautop('<blockquote>This is a blockquote</blockquote>'); |
| 5 | returns |
| 6 | |
| 7 | {{{ |
| 8 | <blockquote><p>This is a blockquote</p></blockquote> |
| 9 | }}} |
| 10 | and |
| 11 | wpautop('<p><blockquote>This is a blockquote</blockquote></p>'); |
| 12 | {{{ |
| 13 | <p> |
| 14 | <blockquote>This is a blockquote</p></blockquote> |
| 15 | }}} |