diff options
Diffstat (limited to 'Bugzilla/Auth')
-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; |