diff options
author | olav%bkor.dhs.org <> | 2006-08-22 05:08:39 +0200 |
---|---|---|
committer | olav%bkor.dhs.org <> | 2006-08-22 05:08:39 +0200 |
commit | 61d670d96ed244a6ea724ff88fd7523b3fd172ea (patch) | |
tree | abd32044cf6c4fc784fb20cdf2e7730c5f1465cf | |
parent | c799eebe99a2c4380709fef69928cd45b9b3ffe1 (diff) | |
download | bugzilla-61d670d96ed244a6ea724ff88fd7523b3fd172ea.tar.gz bugzilla-61d670d96ed244a6ea724ff88fd7523b3fd172ea.tar.xz |
Bug 349554: User preference to add/remove individual bugs to saved searches should default to off - Patch by Olav Vitters <olav@bkor.dhs.org> r=wurblzap a=myk
-rw-r--r-- | Bugzilla/Install.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm index f35292ed9..b014d6f6e 100644 --- a/Bugzilla/Install.pm +++ b/Bugzilla/Install.pm @@ -46,7 +46,7 @@ use constant SETTINGS => { # 2005-10-26 wurblzap@gmail.com -- Bug 291459 zoom_textareas => { options => ["on", "off"], default => "on" }, # 2005-10-21 LpSolit@gmail.com -- Bug 313020 - per_bug_queries => { options => ['on', 'off'], default => 'on' }, + per_bug_queries => { options => ['on', 'off'], default => 'off' }, # 2006-05-01 olav@bkor.dhs.org -- Bug 7710 state_addselfcc => { options => ['always', 'never', 'cc_unless_role'], default => 'cc_unless_role' }, |