From ba6bd7a19d9a224fd328871a9669303197a98733 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Sat, 22 Feb 2003 11:09:49 +0000 Subject: Bug 194426: "usequips" was renamed improperly in the backward-compatibility Param code. Patch by Steve Lamm r= bbaetz, a= justdave --- Bugzilla/Config.pm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Bugzilla/Config.pm') diff --git a/Bugzilla/Config.pm b/Bugzilla/Config.pm index 00b5621f3..6a34396be 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'}; } -- cgit v1.2.3-24-g4f1b