]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 467506: -d $dir check in add_language_set should not be commented-out
authormkanat%bugzilla.org <>
Sat, 6 Dec 2008 19:52:48 +0000 (19:52 +0000)
committermkanat%bugzilla.org <>
Sat, 6 Dec 2008 19:52:48 +0000 (19:52 +0000)
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> r=LpSolit, a=mkanat

Bugzilla/Install/Util.pm

index 931744c1c186e6e753b3e1ce08ceea1d12b8018a..9cec8c435c1d995fd434a9dc6f84b463787e00b4 100644 (file)
@@ -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);
-        #}
+        }
     }
 }