summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Template.pm
diff options
context:
space:
mode:
authorFrédéric Buclin <LpSolit@gmail.com>2010-08-04 02:16:51 +0200
committerFrédéric Buclin <LpSolit@gmail.com>2010-08-04 02:16:51 +0200
commitdd87b4998939b21a8a0bc5806cf8edd0da628edc (patch)
treeb33eed8fbc5099c54faaafc5a6a252202024d35d /Bugzilla/Template.pm
parent0422ceb1be9317baacaf7aad5b5e80e76c2fd238 (diff)
downloadbugzilla-dd87b4998939b21a8a0bc5806cf8edd0da628edc.tar.gz
bugzilla-dd87b4998939b21a8a0bc5806cf8edd0da628edc.tar.xz
Bug 584021: FILTER txt should also remove &nbsp;
r/a=mkanat
Diffstat (limited to 'Bugzilla/Template.pm')
-rw-r--r--Bugzilla/Template.pm2
1 files changed, 2 insertions, 0 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index aca7cb9f0..4abc8a6ee 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -809,6 +809,8 @@ sub create {
{
$var = wrap_comment($var, 72);
}
+ $var =~ s/\&nbsp;/ /g;
+
return $var;
},