Commit 0cd38d0b authored by mkanat%bugzilla.org's avatar mkanat%bugzilla.org

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
parent b8dcce4b
...@@ -268,10 +268,10 @@ sub _add_language_set { ...@@ -268,10 +268,10 @@ sub _add_language_set {
unshift(@add, "$templatedir/$lang/$project") if $project; unshift(@add, "$templatedir/$lang/$project") if $project;
foreach my $dir (@add) { foreach my $dir (@add) {
#if (-d $dir) { if (-d $dir) {
trick_taint($dir); trick_taint($dir);
push(@$array, $dir); push(@$array, $dir);
#} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment