summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authorDavid Lawrence <dkl@mozilla.com>2016-05-05 00:06:53 +0200
committerDavid Lawrence <dkl@mozilla.com>2016-05-05 00:07:05 +0200
commita07ff204618e68b7318d4e6598925cf038333cd5 (patch)
treebb3473e19a091bd040ba698ce461605f001611fe /Bugzilla
parent5a9a4e8572602b225b1de929d0570c276d743d4e (diff)
downloadbugzilla-a07ff204618e68b7318d4e6598925cf038333cd5.tar.gz
bugzilla-a07ff204618e68b7318d4e6598925cf038333cd5.tar.xz
Bug 1263198 - Do not automatically set tracking flags status-firefoxXX affected for bugs filed under SeaMonkey
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Template.pm6
1 files changed, 6 insertions, 0 deletions
diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm
index 343753d46..1ac88b62e 100644
--- a/Bugzilla/Template.pm
+++ b/Bugzilla/Template.pm
@@ -660,6 +660,12 @@ $Template::Stash::SCALAR_OPS->{ truncate } =
return $newstr;
};
+# Override the built in .lower() vmethod
+$Template::Stash::SCALAR_OPS->{ lower } =
+ sub {
+ return lc($_[0]);
+ };
+
# Create the template object that processes templates and specify
# configuration parameters that apply to all templates.