Opened 7 months ago
#22272 new defect (bug)
shortcode_unautop() Doesn't Account for Opening/Closing Shortcode tags each Being on Their Own Line
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | Awaiting Review |
| Component: | Shortcodes | Version: | 3.4.2 |
| Severity: | normal | Keywords: | |
| Cc: |
Description
The shortcode_unautop function does not appear to account for when the opening and closing shortcode tags are put on separate lines from the paragraph they are surrounding.
For example: the following is after wpautop() adds the paragraph tags.
<p>[cool_shortcode]</p> <p>A paragraph about something you should know.</p><p>[/cool_shortcode]</p>
I would expect that shortcode_unautop would remove the paragraph tags from around both the opening and the closing shortcode tags. Instead it treats it all as if the entire thing were in one paragraph. Resulting in the following code being output.
[cool_shortcode]</p> <p>A paragraph about something you should know.</p><p>[/cool_shortcode]
Note: See
TracTickets for help on using
tickets.
