From dc25d8ac9f39d86391ccc134eb2a3098dae37bc8 Mon Sep 17 00:00:00 2001 From: Matt Mullenweg Date: Wed, 9 Mar 2005 21:39:01 +0000 Subject: [PATCH] Fix from mailing list. git-svn-id: https://develop.svn.wordpress.org/trunk@2424 602fd350-edb4-49c9-b593-d223f7449a82 --- 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 fa8c330241..d68cf979b0 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; }