From b8dcce4b0d32e6f046a2311a4be4715100b42d90 Mon Sep 17 00:00:00 2001 From: "mkanat%bugzilla.org" <> Date: Sat, 6 Dec 2008 19:49:58 +0000 Subject: Bug 467324: PROJECT specific template directory was being ignored Patch By Max Kanat-Alexander r=LpSolit, a=LpSolit --- Bugzilla/Install/Util.pm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) { -- cgit v1.2.3-24-g4f1b