From 3009c2de7538fbeb0b2b70c25c53128f78afe6d8 Mon Sep 17 00:00:00 2001 From: Don Armstrong Date: Sat, 9 Jun 2007 16:53:30 -0700 Subject: [PATCH] only delete asci space, not whitespace characters --- cgi/bugreport.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cgi/bugreport.cgi b/cgi/bugreport.cgi index 24b51e49..98e47416 100755 --- a/cgi/bugreport.cgi +++ b/cgi/bugreport.cgi @@ -178,7 +178,7 @@ sub display_entity ($$$$\$\@) { $body = html_escape($body); # Attempt to deal with format=flowed if ($content_type =~ m/format\s*=\s*\"?flowed\"?/i) { - $body =~ s{^\s}{}mgo; + $body =~ s{^\ }{}mgo; # we ignore the other things that you can do with # flowed e-mails cause they don't really matter. } -- 2.39.5