diff --git a/Bugzilla/Install/Util.pm b/Bugzilla/Install/Util.pm index 931744c1c186e6e753b3e1ce08ceea1d12b8018a..9cec8c435c1d995fd434a9dc6f84b463787e00b4 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); - #} + } } }