]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 194426: "usequips" was renamed improperly in the backward-compatibility Param...
authorjustdave%syndicomm.com <>
Sat, 22 Feb 2003 11:09:49 +0000 (11:09 +0000)
committerjustdave%syndicomm.com <>
Sat, 22 Feb 2003 11:09:49 +0000 (11:09 +0000)
Patch by Steve Lamm <slamm@yahoo-inc.com>
r= bbaetz, a= justdave

Bugzilla/Config.pm

index 00b5621f3691885c31ec125a93d5f0e9736dc2f2..6a34396be91be5a566a453b86260c6d07170b5d8 100644 (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'};
     }