diff options
author | Jochen Wiedmann <jochen.wiedmann@gmail.com> | 2011-05-06 22:53:01 +0200 |
---|---|---|
committer | Frédéric Buclin <LpSolit@gmail.com> | 2011-05-06 22:53:01 +0200 |
commit | 2c7efaddad31581331d37f9948fa39657577ce64 (patch) | |
tree | 4a2eb60658c09e027a7d53b8c9f4f65daf682be2 /Bugzilla | |
parent | f0fede65121748fb8b5404a0bdde3616d37eaf51 (diff) | |
download | bugzilla-2c7efaddad31581331d37f9948fa39657577ce64.tar.gz bugzilla-2c7efaddad31581331d37f9948fa39657577ce64.tar.xz |
Bug 653713: editusers.cgi crashes when editing a user profile
r/a=mkanat
Diffstat (limited to 'Bugzilla')
-rw-r--r-- | Bugzilla/Auth/Verify/Stack.pm | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Bugzilla/Auth/Verify/Stack.pm b/Bugzilla/Auth/Verify/Stack.pm index dfc920420..e1a011992 100644 --- a/Bugzilla/Auth/Verify/Stack.pm +++ b/Bugzilla/Auth/Verify/Stack.pm @@ -21,9 +21,12 @@ use fields qw( _stack successful ); -use Hash::Util qw(lock_keys); + use Bugzilla::Hook; +use Hash::Util qw(lock_keys); +use List::MoreUtils qw(any); + sub new { my $class = shift; my $list = shift; |