From: mkanat%bugzilla.org <> Date: Sat, 6 Dec 2008 19:52:48 +0000 (+0000) Subject: Bug 467506: -d $dir check in add_language_set should not be commented-out X-Git-Tag: bugzilla-3.2.1~38 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e4f9213e7b1f083856ddde3add674fbf838724bf;p=thirdparty%2Fbugzilla.git Bug 467506: -d $dir check in add_language_set should not be commented-out Patch By Max Kanat-Alexander r=LpSolit, a=mkanat --- 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); - #} + } } }