diff options
author | Mary Umoh <umohm12@gmail.com> | 2017-07-18 00:06:23 +0200 |
---|---|---|
committer | Dylan William Hardison <dylan@hardison.net> | 2017-07-18 00:06:23 +0200 |
commit | e203bc3af47406339870e718475f0f0ea194f6c9 (patch) | |
tree | fc8739c2dd1fe5dcce8325cfe9817b435d504003 /Bugzilla | |
parent | e08b1e57d8f4921821ba68ceea96c9eaaa1729f8 (diff) | |
download | bugzilla-e203bc3af47406339870e718475f0f0ea194f6c9.tar.gz bugzilla-e203bc3af47406339870e718475f0f0ea194f6c9.tar.xz |
Bug 1380389 - autosize comments should be a user pref (default: on)
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Install.pm | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Bugzilla/Install.pm b/Bugzilla/Install.pm index 885571020..3f8d4bdfb 100644 --- a/Bugzilla/Install.pm +++ b/Bugzilla/Install.pm @@ -181,6 +181,12 @@ sub SETTINGS { default => 'off', category => 'Searching' }, + { + name => 'autosize_comments', + options => ['on', 'off'], + default => 'on', + category => 'User Interface' + }, ]; }; |