diff options
-rw-r--r-- | Bugzilla/Install/Util.pm | 4 |
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); - #} + } } } |