From a07ff204618e68b7318d4e6598925cf038333cd5 Mon Sep 17 00:00:00 2001 From: David Lawrence Date: Wed, 4 May 2016 22:06:53 +0000 Subject: Bug 1263198 - Do not automatically set tracking flags status-firefoxXX affected for bugs filed under SeaMonkey --- Bugzilla/Template.pm | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'Bugzilla') 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. -- cgit v1.2.3-24-g4f1b