diff options
author | wurblzap%gmail.com <> | 2006-09-07 05:45:29 +0200 |
---|---|---|
committer | wurblzap%gmail.com <> | 2006-09-07 05:45:29 +0200 |
commit | eb8c60397f360310be290d41a5c15c0c917a1891 (patch) | |
tree | 805ff1ee07d0d1dc360712ddf5f07eb69465c008 /Bugzilla/Install | |
parent | 707f26646c78879d73639abfc29e8b9eb1f8f0f1 (diff) | |
download | bugzilla-eb8c60397f360310be290d41a5c15c0c917a1891.tar.gz bugzilla-eb8c60397f360310be290d41a5c15c0c917a1891.tar.xz |
Bug 322693: Create a mechanism to manage multiple custom skins.
Patch by Marc Schumann <wurblzap@gmail.com>;
r=myk,mkanat; a=myk
Diffstat (limited to 'Bugzilla/Install')
-rw-r--r-- | Bugzilla/Install/DB.pm | 2 | ||||
-rw-r--r-- | Bugzilla/Install/Filesystem.pm | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/Bugzilla/Install/DB.pm b/Bugzilla/Install/DB.pm index ccbb5f8cd..d7918f6ac 100644 --- a/Bugzilla/Install/DB.pm +++ b/Bugzilla/Install/DB.pm @@ -485,6 +485,8 @@ sub update_table_definitions { _update_longdescs_who_index(); + $dbh->bz_add_column('setting', 'subclass', {TYPE => 'varchar(32)'}); + ################################################################ # New --TABLE-- changes should go *** A B O V E *** this point # ################################################################ diff --git a/Bugzilla/Install/Filesystem.pm b/Bugzilla/Install/Filesystem.pm index 5261989dd..43c964ba7 100644 --- a/Bugzilla/Install/Filesystem.pm +++ b/Bugzilla/Install/Filesystem.pm @@ -184,6 +184,7 @@ sub FILESYSTEM { graphs => $ws_dir_writeable, $webdotdir => $ws_dir_writeable, 'skins/custom' => $ws_dir_readable, + 'skins/contrib' => $ws_dir_readable, ); # The name of each file, pointing at its default permissions and |