summaryrefslogtreecommitdiffstats
path: root/checksetup.pl
diff options
context:
space:
mode:
authormkanat%bugzilla.org <>2006-08-02 19:32:13 +0200
committermkanat%bugzilla.org <>2006-08-02 19:32:13 +0200
commitb06a56e99c623093a15921546f68f8bc8f7ba75e (patch)
tree76168a77593cc9b0a48edf4c4276585c7c047305 /checksetup.pl
parent01c3f172a95760538553e944b34c71de0b0ada13 (diff)
downloadbugzilla-b06a56e99c623093a15921546f68f8bc8f7ba75e.tar.gz
bugzilla-b06a56e99c623093a15921546f68f8bc8f7ba75e.tar.xz
Bug 346932: Move settings creation/maintenance into Bugzilla::Install
Patch By Max Kanat-Alexander <mkanat@bugzilla.org> (module owner) a=myk
Diffstat (limited to 'checksetup.pl')
-rwxr-xr-xchecksetup.pl32
1 files changed, 2 insertions, 30 deletions
diff --git a/checksetup.pl b/checksetup.pl
index 813aa0a83..9d48644ae 100755
--- a/checksetup.pl
+++ b/checksetup.pl
@@ -329,6 +329,7 @@ import Bugzilla::Install::Filesystem qw(update_filesystem create_htaccess
require Bugzilla::DB;
require Bugzilla::Template;
+require Bugzilla::Install;
###########################################################################
# Check and update --LOCAL-- configuration
@@ -3264,36 +3265,7 @@ if (!GroupDoesExist('bz_sudoers')) {
# Create --SETTINGS-- users can adjust
###########################################################################
-# 2005-03-03 travis@sedsystems.ca -- Bug 41972
-add_setting ("display_quips", {"on" => 1, "off" => 2 }, "on" );
-
-# 2005-03-10 travis@sedsystems.ca -- Bug 199048
-add_setting ("comment_sort_order", {"oldest_to_newest" => 1,
- "newest_to_oldest" => 2,
- "newest_to_oldest_desc_first" => 3},
- "oldest_to_newest" );
-
-# 2005-05-12 bugzilla@glob.com.au -- Bug 63536
-add_setting ("post_bug_submit_action", {"next_bug" => 1,
- "same_bug" => 2,
- "nothing" => 3,
- },
- "next_bug" );
-
-# 2005-06-29 wurblzap@gmail.com -- Bug 257767
-add_setting ('csv_colsepchar', {',' => 1, ';' => 2 }, ',' );
-
-# 2005-10-26 wurblzap@gmail.com -- Bug 291459
-add_setting ("zoom_textareas", {"on" => 1, "off" => 2 }, "on" );
-
-# 2005-10-21 LpSolit@gmail.com -- Bug 313020
-add_setting('per_bug_queries', {'on' => 1, 'off' => 2}, 'on');
-
-# 2006-05-01 olav@bkor.dhs.org -- Bug 7710
-add_setting('state_addselfcc', {'always' => 1,
- 'never' => 2,
- 'cc_unless_role' => '3'},
- 'cc_unless_role');
+Bugzilla::Install::update_settings();
###########################################################################
# Create Administrator --ADMIN--