From: Frédéric Buclin Date: Wed, 4 Aug 2010 00:16:51 +0000 (+0200) Subject: Bug 584021: FILTER txt should also remove   X-Git-Tag: bugzilla-4.1.1~329 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dd87b4998939b21a8a0bc5806cf8edd0da628edc;p=thirdparty%2Fbugzilla.git Bug 584021: FILTER txt should also remove   r/a=mkanat --- diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index aca7cb9f09..4abc8a6ee1 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -809,6 +809,8 @@ sub create { { $var = wrap_comment($var, 72); } + $var =~ s/\ / /g; + return $var; },