From: Don Armstrong Date: Sat, 9 Jun 2007 23:53:30 +0000 (-0700) Subject: only delete asci space, not whitespace characters X-Git-Tag: release/2.6.0~559^2 X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=3009c2de7538fbeb0b2b70c25c53128f78afe6d8;p=debbugs.git only delete asci space, not whitespace characters --- 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. }