summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Search
diff options
context:
space:
mode:
authorByron Jones <bjones@mozilla.com>2013-09-20 08:58:26 +0200
committerByron Jones <bjones@mozilla.com>2013-09-20 08:58:26 +0200
commitddaae0e3bad3cde9bb5038308c242273a6e7b449 (patch)
treea1d6cb9c8ac37e1906742c69a756b2122c7158b8 /Bugzilla/Search
parent607415d6cf299bc7b57e10b825e881058d439ba3 (diff)
downloadbugzilla-ddaae0e3bad3cde9bb5038308c242273a6e7b449.tar.gz
bugzilla-ddaae0e3bad3cde9bb5038308c242273a6e7b449.tar.xz
Bug 918644: ignore "Use of uninitialized value $compiled in concatenation (.) or string at /usr/lib64/perl5/Template/Provider.pm line 572." warnings
Diffstat (limited to 'Bugzilla/Search')
-rw-r--r--Bugzilla/Search/Quicksearch.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/Search/Quicksearch.pm b/Bugzilla/Search/Quicksearch.pm
index 6ea28169c..563e2c383 100644
--- a/Bugzilla/Search/Quicksearch.pm
+++ b/Bugzilla/Search/Quicksearch.pm
@@ -294,6 +294,7 @@ sub _parse_line {
$line =~ tr/\001/'/;
my @words = parse_line($delim, $keep, $line);
+
foreach my $word (@words) {
$word =~ tr/\000/'/;
}