From 0cd38d0b1d31f37520bb4d1d8417623c1ff2fd30 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Sat, 6 Dec 2008 19:52:06 +0000 Subject: [PATCH] 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(-) diff --git a/Bugzilla/Install/Util.pm b/Bugzilla/Install/Util.pm index 931744c1c1..9cec8c435c 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); - #} + } } } -- 2.47.3