diff options
author | bbaetz%student.usyd.edu.au <> | 2002-12-03 21:35:44 +0100 |
---|---|---|
committer | bbaetz%student.usyd.edu.au <> | 2002-12-03 21:35:44 +0100 |
commit | 71befb6c4cc079e6c23e2263d52c115ab3249334 (patch) | |
tree | bf2983192fc58d3451c6553d42597750fa4d29d5 | |
parent | 179d6c8d7140d7ca710759ec35de00abcc646c4f (diff) | |
download | bugzilla-71befb6c4cc079e6c23e2263d52c115ab3249334.tar.gz bugzilla-71befb6c4cc079e6c23e2263d52c115ab3249334.tar.xz |
Bug 182946 - fix additional typo noticed on irc by tm
-rwxr-xr-x | Bug.pm | 2 | ||||
-rwxr-xr-x | Bugzilla/Bug.pm | 2 |
2 files changed, 2 insertions, 2 deletions
@@ -206,7 +206,7 @@ sub initBug { 'target_type' => 'bug' }); } $self->{'flag_types'} = $flag_types; - $self->{'any_flags_requesteeable'} = grep($_->{'is_requesteeble'}, @$flag_types); + $self->{'any_flags_requesteeble'} = grep($_->{'is_requesteeble'}, @$flag_types); # The number of types of flags that can be set on attachments to this bug # and the number of flags on those attachments. One of these counts must be diff --git a/Bugzilla/Bug.pm b/Bugzilla/Bug.pm index 29f2e9b73..7d7a1debc 100755 --- a/Bugzilla/Bug.pm +++ b/Bugzilla/Bug.pm @@ -206,7 +206,7 @@ sub initBug { 'target_type' => 'bug' }); } $self->{'flag_types'} = $flag_types; - $self->{'any_flags_requesteeable'} = grep($_->{'is_requesteeble'}, @$flag_types); + $self->{'any_flags_requesteeble'} = grep($_->{'is_requesteeble'}, @$flag_types); # The number of types of flags that can be set on attachments to this bug # and the number of flags on those attachments. One of these counts must be |