From 0cd38d0b1d31f37520bb4d1d8417623c1ff2fd30 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Sat, 6 Dec 2008 19:52:06 +0000 Subject: Bug 467506: -d $dir check in add_language_set should not be commented-out Patch By Max Kanat-Alexander r=LpSolit, a=mkanat --- Bugzilla/Install/Util.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla') diff --git a/Bugzilla/Install/Util.pm b/Bugzilla/Install/Util.pm index 931744c1c..9cec8c435 100644 --- a/Bugzilla/Install/Util.pm +++ b/Bugzilla/Install/Util.pm @@ -268,10 +268,10 @@ sub _add_language_set { unshift(@add, "$templatedir/$lang/$project") if $project; foreach my $dir (@add) { - #if (-d $dir) { + if (-d $dir) { trick_taint($dir); push(@$array, $dir); - #} + } } } -- cgit v1.2.3-24-g4f1b