diff options
author | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-03 21:18:43 +0200 |
---|---|---|
committer | Max Kanat-Alexander <mkanat@bugzilla.org> | 2010-06-03 21:18:43 +0200 |
commit | 99ad6a4e8674133c5bb8367d291eb1986c3cee8a (patch) | |
tree | a8a0a96bcd9b21d6e0fdc96245f5f423f4c5833b /extensions/Voting | |
parent | a476a7bf0f7b9b07bd5c98708aeda2278564eb9e (diff) | |
download | bugzilla-99ad6a4e8674133c5bb8367d291eb1986c3cee8a.tar.gz bugzilla-99ad6a4e8674133c5bb8367d291eb1986c3cee8a.tar.xz |
Bug 567846: Modify set_status, set_resolution, and set_dup_id to use
VALIDATOR_DEPENDENCIES, so that they don't need custom code in set_all.
Diffstat (limited to 'extensions/Voting')
-rw-r--r-- | extensions/Voting/Extension.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extensions/Voting/Extension.pm b/extensions/Voting/Extension.pm index 97e061313..24ac4fdb5 100644 --- a/extensions/Voting/Extension.pm +++ b/extensions/Voting/Extension.pm @@ -844,7 +844,7 @@ sub _confirm_if_vote_confirmed { } ThrowCodeError('voting_no_open_bug_status') unless $new_status; - # We cannot call $bug->set_status() here, because a user without + # We cannot call $bug->set_bug_status() here, because a user without # canconfirm privs should still be able to confirm a bug by # popular vote. We already know the new status is valid, so it's safe. $bug->{bug_status} = $new_status; |