From: justdave%syndicomm.com <> Date: Sat, 22 Feb 2003 11:09:49 +0000 (+0000) Subject: Bug 194426: "usequips" was renamed improperly in the backward-compatibility Param... X-Git-Tag: bugzilla-2.17.4~53 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba6bd7a19d9a224fd328871a9669303197a98733;p=thirdparty%2Fbugzilla.git Bug 194426: "usequips" was renamed improperly in the backward-compatibility Param code. Patch by Steve Lamm r= bbaetz, a= justdave --- diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index 00b5621f36..6a34396be9 100644 --- a/Bugzilla/Config.pm +++ b/Bugzilla/Config.pm @@ -171,8 +171,8 @@ sub UpdateParams { delete $param{'version'}; # Change from a boolean for quips to multi-state - if (exists $param{'usequip'} && !exists $param{'allowquips'}) { - $param{'allowquips'} = $param{'usequip'} ? 'on' : 'off'; + if (exists $param{'usequip'} && !exists $param{'enablequips'}) { + $param{'enablequips'} = $param{'usequip'} ? 'on' : 'off'; delete $param{'usequip'}; }