]> git.ipfire.org Git - thirdparty/bugzilla.git/commitdiff
Bug 303914: legal_bugs_status should be spelled legal_bug_status in Bug.pm - Patch...
authorlpsolit%gmail.com <>
Sun, 14 Aug 2005 01:41:31 +0000 (01:41 +0000)
committerlpsolit%gmail.com <>
Sun, 14 Aug 2005 01:41:31 +0000 (01:41 +0000)
Bugzilla/Bug.pm

index d20af1268e81fe536d18963402fb2910f35d2b92..ca5378c7c4bee8902814e5745e610f6a300a1980 100755 (executable)
@@ -30,7 +30,7 @@ package Bugzilla::Bug;
 use strict;
 
 use vars qw($legal_keywords @legal_platform
-            @legal_priority @legal_severity @legal_opsys @legal_bugs_status
+            @legal_priority @legal_severity @legal_opsys @legal_bug_status
             @settable_resolution %components %versions %target_milestone
             @enterable_products %milestoneurl %prodmaxvotes);
 
@@ -679,7 +679,7 @@ sub choices {
        'priority' => \@::legal_priority,
        'bug_severity' => \@::legal_severity,
        'op_sys' => \@::legal_opsys,
-       'bug_status' => \@::legal_bugs_status,
+       'bug_status' => \@::legal_bug_status,
        'resolution' => \@res,
        'component' => $::components{$self->{product}},
        'version' => $::versions{$self->{product}},