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

Patch by Steve Lamm <slamm@yahoo-inc.com>
r= bbaetz, a= justdave
This commit is contained in:
justdave%syndicomm.com 2003-02-22 03:09:49 +00:00
parent 01767033ad
commit c65dcaabc4

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