summaryrefslogtreecommitdiffstats
path: root/Bugzilla/Auth/DB.pm
diff options
context:
space:
mode:
Diffstat (limited to 'Bugzilla/Auth/DB.pm')
-rw-r--r--Bugzilla/Auth/DB.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Auth/DB.pm b/Bugzilla/Auth/DB.pm
index 34ec9983c..dee3b5db9 100644
--- a/Bugzilla/Auth/DB.pm
+++ b/Bugzilla/Auth/DB.pm
@@ -50,8 +50,8 @@ sub authenticate {
# The user's credentials are okay, so delete any outstanding
# password tokens they may have generated.
- require Token;
- Token::DeletePasswordTokens($userid, "user_logged_in");
+ require Bugzilla::Token;
+ Bugzilla::Token::DeletePasswordTokens($userid, "user_logged_in");
# Account may have been disabled
my $disabledtext = $class->get_disabled($userid);