diff options
author | 2005-08-14 01:46:35 +0000 | |
---|---|---|
committer | 2005-08-14 01:46:35 +0000 | |
commit | 31c0b7aeeb8137ad039d6d1a54a2c4f4b7b7de2e (patch) | |
tree | fb4721f492d177532ff517c03f0df21449472038 | |
parent | Bug 135145: Graphs generated by local webdot are huge - Patch by Olav Vitters... (diff) | |
download | bugzilla-31c0b7aeeb8137ad039d6d1a54a2c4f4b7b7de2e.tar.gz bugzilla-31c0b7aeeb8137ad039d6d1a54a2c4f4b7b7de2e.tar.bz2 bugzilla-31c0b7aeeb8137ad039d6d1a54a2c4f4b7b7de2e.zip |
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
-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 ba66ae574..a35b23fb2 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -29,7 +29,7 @@ use strict; use Bugzilla::RelationSet; use vars qw($unconfirmedstate $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); @@ -473,7 +473,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}}, |