summaryrefslogtreecommitdiffstats
path: root/wp-includes/formatting.php
diff options
context:
space:
mode:
authordonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-02-20 10:56:56 +0000
committerdonncha <donncha@7be80a69-a1ef-0310-a953-fb0f7c49ff36>2007-02-20 10:56:56 +0000
commit9336db3a63ff73ea10fb075df21be226a64629f3 (patch)
tree2b8d73ef4e2e78559165410171b6d64db8267d8b /wp-includes/formatting.php
parentfdbaa07fe5fd78cd691aba3dd32d9222bfdb0a9f (diff)
downloadwordpress-mu-9336db3a63ff73ea10fb075df21be226a64629f3.tar.gz
wordpress-mu-9336db3a63ff73ea10fb075df21be226a64629f3.tar.xz
wordpress-mu-9336db3a63ff73ea10fb075df21be226a64629f3.zip
wp merge to rev 4896
Ryan's nooption fixes jquery filename is different git-svn-id: http://svn.automattic.com/wordpress-mu/trunk@890 7be80a69-a1ef-0310-a953-fb0f7c49ff36
Diffstat (limited to 'wp-includes/formatting.php')
-rw-r--r--wp-includes/formatting.php3
1 files changed, 1 insertions, 2 deletions
diff --git a/wp-includes/formatting.php b/wp-includes/formatting.php
index 26b8158..dad5e78 100644
--- a/wp-includes/formatting.php
+++ b/wp-includes/formatting.php
@@ -63,7 +63,6 @@ function wpautop($pee, $br = 1) {
$pee = preg_replace("/\n\n+/", "\n\n", $pee); // take care of duplicates
$pee = preg_replace('/\n?(.+?)(?:\n\s*\n|\z)/s', "<p>$1</p>\n", $pee); // make paragraphs, including one at the end
$pee = preg_replace('|<p>\s*?</p>|', '', $pee); // under certain strange conditions it could create a P of entirely whitespace
- $pee = preg_replace( '|<p>(<div[^>]*>\s*)|', "$1<p>", $pee );
$pee = preg_replace('!<p>([^<]+)\s*?(</(?:div|address|form)[^>]*>)!', "<p>$1</p>$2", $pee);
$pee = preg_replace( '|<p>|', "$1<p>", $pee );
$pee = preg_replace('!<p>\s*(</?' . $allblocks . '[^>]*>)\s*</p>!', "$1", $pee); // don't pee all over a tag
@@ -82,7 +81,7 @@ function wpautop($pee, $br = 1) {
if ( strstr( $pee, '<pre' ) )
$pee = preg_replace('!(<pre.*?>)(.*?)</pre>!ise', " stripslashes('$1') . stripslashes(clean_pre('$2')) . '</pre>' ", $pee);
$pee = preg_replace( "|\n</p>$|", '</p>', $pee );
-/**/
+
return $pee;
}