From: Frédéric Buclin Date: Wed, 4 Aug 2010 00:18:04 +0000 (+0200) Subject: Bug 584021: FILTER txt should also remove   X-Git-Tag: bugzilla-3.7.3~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d91ec7e1b49b06a16dffd77be2cf374d1a8d034d;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 d9089389eb..c1b8462ee6 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -815,6 +815,8 @@ sub create { { $var = wrap_comment($var, 72); } + $var =~ s/\ / /g; + return $var; },