diff options
author | lpsolit%gmail.com <> | 2007-05-10 21:59:40 +0000 |
---|---|---|
committer | lpsolit%gmail.com <> | 2007-05-10 21:59:40 +0000 |
commit | 7a584ece1eb334ecfdbba7a3d59b6e39646ba29f (patch) | |
tree | 2a6a236b03e03c77711ad524cecb0c3b3cbc2913 /Bugzilla/User | |
parent | a43f35c27c4c233d2a8f3461d231cd299a648b93 (diff) | |
download | bugs-7a584ece1eb334ecfdbba7a3d59b6e39646ba29f.tar bugs-7a584ece1eb334ecfdbba7a3d59b6e39646ba29f.tar.gz bugs-7a584ece1eb334ecfdbba7a3d59b6e39646ba29f.tar.bz2 bugs-7a584ece1eb334ecfdbba7a3d59b6e39646ba29f.tar.xz bugs-7a584ece1eb334ecfdbba7a3d59b6e39646ba29f.zip |
Bug 376908: Installation process should not assume skins are in the same directory as checksetup.pl - Patch by guillomovitch@zarb.org r/a=mkanat
Diffstat (limited to 'Bugzilla/User')
-rwxr-xr-x | Bugzilla/User/Setting/Skin.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/User/Setting/Skin.pm b/Bugzilla/User/Setting/Skin.pm index c4858503f..f55e01297 100755 --- a/Bugzilla/User/Setting/Skin.pm +++ b/Bugzilla/User/Setting/Skin.pm @@ -33,7 +33,7 @@ sub legal_values { return $self->{'legal_values'} if defined $self->{'legal_values'}; - my $dirbase = bz_locations()->{'skinsdir'}; + my $dirbase = bz_locations()->{'skinsdir'} . '/contrib'; # Avoid modification of the list BUILTIN_SKIN_NAMES points to by copying the # list over instead of simply writing $legal_values = BUILTIN_SKIN_NAMES. my @legal_values = @{(BUILTIN_SKIN_NAMES)}; |