summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Config.pm
diff options
context:
space:
mode:
authorjustdave%syndicomm.com <>2003-02-22 12:09:49 +0100
committerjustdave%syndicomm.com <>2003-02-22 12:09:49 +0100
commitba6bd7a19d9a224fd328871a9669303197a98733 (patch)
tree4cd1e5ab5288f09cb758471eb632d5a7290efa0e /Bugzilla/Config.pm
parent5da94c5431fdb0a359914ee33e93137f3f7e0af0 (diff)
downloadbugzilla-ba6bd7a19d9a224fd328871a9669303197a98733.tar.gz
bugzilla-ba6bd7a19d9a224fd328871a9669303197a98733.tar.xz
Bug 194426: "usequips" was renamed improperly in the backward-compatibility Param code.
Patch by Steve Lamm <slamm@yahoo-inc.com> r= bbaetz, a= justdave
Diffstat (limited to 'Bugzilla/Config.pm')
-rw-r--r--Bugzilla/Config.pm4
1 files changed, 2 insertions, 2 deletions
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'};
}