From: travis%sedsystems.ca <> Date: Tue, 15 Mar 2005 23:55:42 +0000 (+0000) Subject: Bug 285689 : quip_list_entry_control conversion code is not converting the enablequip... X-Git-Tag: bugzilla-2.19.3~155 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=edb8d829422f00885b3b6a76e1fc4165f439a644;p=thirdparty%2Fbugzilla.git Bug 285689 : quip_list_entry_control conversion code is not converting the enablequips 'off' value Patch by Shane H. W. Travis r=mkanat a=myk --- diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index d91755891b..6bc149be92 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'}; }