From 0ee45ebf10cc0adb0f522a92896253c0b7c97c77 Mon Sep 17 00:00:00 2001 From: matt Date: Wed, 9 Mar 2005 21:39:01 +0000 Subject: [PATCH] Fix from mailing list. git-svn-id: http://svn.automattic.com/wordpress/trunk@2424 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-content/plugins/textile1.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wp-content/plugins/textile1.php b/wp-content/plugins/textile1.php index fa8c33024..d68cf979b 100644 --- a/wp-content/plugins/textile1.php +++ b/wp-content/plugins/textile1.php @@ -70,7 +70,7 @@ POSSIBILITY OF SUCH DAMAGE. $text = preg_split("/\n/",$text); foreach($text as $line){ - $line = trim($line); + $line = rtrim($line); $lineout[] = $line; }