From 0b990337deb4528ad6a956d3c3d37be80151d06e Mon Sep 17 00:00:00 2001 From: "mkanat%kerio.com" <> Date: Fri, 18 Mar 2005 12:21:27 +0000 Subject: Bug 256513: Fix usage of grep (/$value/, @array); Patch By Olav Vitters r=mkanat, a=justdave --- Bugzilla/Template.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Bugzilla/Template.pm') diff --git a/Bugzilla/Template.pm b/Bugzilla/Template.pm index 3e37ed5e7..29ed2924c 100644 --- a/Bugzilla/Template.pm +++ b/Bugzilla/Template.pm @@ -117,7 +117,7 @@ sub getTemplateIncludePath () { # 'en-uk' etc. but not the otherway round. (This is unfortunally # not very clearly stated in those RFC; see comment just over 14.5 # in http://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html#sec14.4) - if(my @found = grep /^$lang(-.+)?$/i, @languages) { + if(my @found = grep /^\Q$lang\E(-.+)?$/i, @languages) { push (@usedlanguages, @found); } } -- cgit v1.2.3-24-g4f1b