diff options
-rw-r--r-- | Bugzilla/Install/Util.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install/Util.pm b/Bugzilla/Install/Util.pm index 4c3754964..931744c1c 100644 --- a/Bugzilla/Install/Util.pm +++ b/Bugzilla/Install/Util.pm @@ -265,7 +265,7 @@ sub _add_language_set { my @add = ("$templatedir/$lang/custom", "$templatedir/$lang/default"); my $project = bz_locations->{'project'}; - push(@add, "$templatedir/$lang/$project") if $project; + unshift(@add, "$templatedir/$lang/$project") if $project; foreach my $dir (@add) { #if (-d $dir) { |