Bug 194426: "usequips" was renamed improperly in the backward-compatibility Param code.

Patch by Steve Lamm <slamm@yahoo-inc.com>
r= bbaetz, a= justdave


git-svn-id: svn://10.0.0.236/trunk@138146 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
justdave%syndicomm.com
2003-02-22 03:09:49 +00:00
parent 519a174df9
commit 7cfde91627

View File

@@ -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'};
}