]> git.donarmstrong.com Git - debbugs.git/commitdiff
only delete asci space, not whitespace characters
authorDon Armstrong <don@donarmstrong.com>
Sat, 9 Jun 2007 23:53:30 +0000 (16:53 -0700)
committerDon Armstrong <don@donarmstrong.com>
Sat, 9 Jun 2007 23:53:30 +0000 (16:53 -0700)
cgi/bugreport.cgi

index 24b51e49306cfba4071942a96027aba85c87e1f9..98e474169fa983ac7a4ca04f1633357bfe8b3cf6 100755 (executable)
@@ -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.
              }