From a80371dc20fb4216e8da1bce85b09dda84332870 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Thu, 6 Jan 2005 10:10:55 +0000 Subject: [PATCH] Don't muddy
 pool

git-svn-id: https://develop.svn.wordpress.org/trunk@2056 602fd350-edb4-49c9-b593-d223f7449a82
---
 wp-includes/functions-formatting.php | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/wp-includes/functions-formatting.php b/wp-includes/functions-formatting.php
index b9ff720f73..fd47198e0e 100644
--- a/wp-includes/functions-formatting.php
+++ b/wp-includes/functions-formatting.php
@@ -52,6 +52,8 @@ function wptexturize($text) {
 
 function clean_pre($text) {
 	$text = str_replace('
', '', $text); + $text = str_replace('

', "\n", $text); + $text = str_replace('

', '', $text); return $text; }