summaryrefslogtreecommitdiffstats
path: root/Bugzilla
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2008-12-06 20:52:06 +0100
committermkanat%bugzilla.org <>2008-12-06 20:52:06 +0100
commit0cd38d0b1d31f37520bb4d1d8417623c1ff2fd30 (patch)
tree18afd822a8951fde29874a7a5eeaab32b8c86c2e /Bugzilla
parentb8dcce4b0d32e6f046a2311a4be4715100b42d90 (diff)
downloadbugzilla-0cd38d0b1d31f37520bb4d1d8417623c1ff2fd30.tar.gz
bugzilla-0cd38d0b1d31f37520bb4d1d8417623c1ff2fd30.tar.xz
Bug 467506: -d $dir check in add_language_set should not be commented-out
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r--Bugzilla/Install/Util.pm4
1 files changed, 2 insertions, 2 deletions
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);
- #}
+ }
}
}