diff options
author | lpsolit%gmail.com <> | 2005-08-14 03:41:31 +0200 |
---|---|---|
committer | lpsolit%gmail.com <> | 2005-08-14 03:41:31 +0200 |
commit | 82fd0deaed733fb9bf0cd974c8acc7c13ae57297 (patch) | |
tree | 444a1225403945c4a9871a3e0987e6a0b4a1e01c /Bugzilla | |
parent | 0b42b63e6eb6e2c91a048ff073574048940215f4 (diff) | |
download | bugzilla-82fd0deaed733fb9bf0cd974c8acc7c13ae57297.tar.gz bugzilla-82fd0deaed733fb9bf0cd974c8acc7c13ae57297.tar.xz |
Bug 303914: legal_bugs_status should be spelled legal_bug_status in Bug.pm - Patch by Olav Vitters <bugzilla-mozilla@bkor.dhs.org> r=LpSolit a=justdave
Diffstat (limited to 'Bugzilla')
-rwxr-xr-x | Bugzilla/Bug.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index d20af1268..ca5378c7c 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -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}}, |