From 0fa4d73384efcd3e54aefb68f96e330dd6308dee Mon Sep 17 00:00:00 2001 From: Antoine Musso Date: Sun, 18 Apr 2004 17:26:47 +0000 Subject: [PATCH] Fix bug 868957 Allow indentation with spaces in table wikisyntax ! ( rtrim -> trim) --- includes/Parser.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/includes/Parser.php b/includes/Parser.php index 6b6f903a1b..f7c602a381 100644 --- a/includes/Parser.php +++ b/includes/Parser.php @@ -371,7 +371,7 @@ class Parser $ltr = array () ; # tr attributes foreach ( $t AS $k => $x ) { - $x = rtrim ( $x ) ; + $x = trim ( $x ) ; $fc = substr ( $x , 0 , 1 ) ; if ( "{|" == substr ( $x , 0 , 2 ) ) { -- 2.20.1