]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 1263198 - Do not automatically set tracking flags status-firefoxXX affected for...
authorDavid Lawrence <dkl@mozilla.com>
Wed, 4 May 2016 22:06:53 +0000 (22:06 +0000)
committerDavid Lawrence <dkl@mozilla.com>
Wed, 4 May 2016 22:07:05 +0000 (22:07 +0000)
Bugzilla/Template.pm

index 343753d46489ad6b324f817654f50210ff76d0c0..1ac88b62e4793ea62bea073d114d153451d0bbd2 100644 (file)
@@ -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.