Ticket #1024: 1024.patch
| File 1024.patch, 2.1 KB (added by shorty114, 5 years ago) |
|---|
-
wp-includes/formatting.php
66 66 $pee = preg_replace("|<p>(<li.+?)</p>|", "$1", $pee); // problem with nested lists 67 67 $pee = preg_replace('|<p><blockquote([^>]*)>|i', "<blockquote$1><p>", $pee); 68 68 $pee = str_replace('</blockquote></p>', '</p></blockquote>', $pee); 69 $pee = preg_replace('!<p>\s*(</?(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|hr|pre|select|form| blockquote|address|math|p|h[1-6])[^>]*>)!', "$1", $pee);70 $pee = preg_replace('!(</?(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form| blockquote|address|math|p|h[1-6])[^>]*>)\s*</p>!', "$1", $pee);69 $pee = preg_replace('!<p>\s*(</?(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|hr|pre|select|form|fieldset|legend|blockquote|address|math|p|h[1-6])[^>]*>)!', "$1", $pee); 70 $pee = preg_replace('!(</?(?:table|thead|tfoot|caption|colgroup|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|fieldset|legend|blockquote|address|math|p|h[1-6])[^>]*>)\s*</p>!', "$1", $pee); 71 71 if ($br) { 72 72 $pee = preg_replace('/<(script|style).*?<\/\\1>/se', 'str_replace("\n", "<WPPreserveNewline />", "\\0")', $pee); 73 73 $pee = preg_replace('|(?<!<br />)\s*\n|', "<br />\n", $pee); // optionally make line breaks 74 74 $pee = str_replace('<WPPreserveNewline />', "\n", $pee); 75 75 } 76 $pee = preg_replace('!(</?(?:table|thead|tfoot|caption|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form| blockquote|address|math|p|h[1-6])[^>]*>)\s*<br />!', "$1", $pee);76 $pee = preg_replace('!(</?(?:table|thead|tfoot|caption|tbody|tr|td|th|div|dl|dd|dt|ul|ol|li|pre|select|form|fieldset|legend|blockquote|address|math|p|h[1-6])[^>]*>)\s*<br />!', "$1", $pee); 77 77 $pee = preg_replace('!<br />(\s*</?(?:p|li|div|dl|dd|dt|th|pre|td|ul|ol)[^>]*>)!', '$1', $pee); 78 78 $pee = preg_replace('!(<pre.*?>)(.*?)</pre>!ise', " stripslashes('$1') . stripslashes(clean_pre('$2')) . '</pre>' ", $pee); 79 79
