diff options
author | travis%sedsystems.ca <> | 2005-03-16 00:55:42 +0100 |
---|---|---|
committer | travis%sedsystems.ca <> | 2005-03-16 00:55:42 +0100 |
commit | edb8d829422f00885b3b6a76e1fc4165f439a644 (patch) | |
tree | 411555c515e7bffe30111efc9068e7fb9e8c3020 /Bugzilla | |
parent | 7140a0653a881efd1b45504ad78396b78c09663c (diff) | |
download | bugzilla-edb8d829422f00885b3b6a76e1fc4165f439a644.tar.gz bugzilla-edb8d829422f00885b3b6a76e1fc4165f439a644.tar.xz |
Bug 285689 : quip_list_entry_control conversion code is not converting the enablequips 'off' value
Patch by Shane H. W. Travis <travis@sedsystems.ca> r=mkanat a=myk
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Config.pm | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index d91755891..6bc149be9 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -246,6 +246,7 @@ sub UpdateParams { ($param{'enablequips'} eq 'on') && do {$new_value = 'open';}; ($param{'enablequips'} eq 'approved') && do {$new_value = 'moderated';}; ($param{'enablequips'} eq 'frozen') && do {$new_value = 'closed';}; + ($param{'enablequips'} eq 'off') && do {$new_value = 'closed';}; $param{'quip_list_entry_control'} = $new_value; delete $param{'enablequips'}; } |