diff options
author | justdave%syndicomm.com <> | 2004-03-18 17:01:34 +0000 |
---|---|---|
committer | justdave%syndicomm.com <> | 2004-03-18 17:01:34 +0000 |
commit | cbef267df28e3befd53e6982773558c5acafd661 (patch) | |
tree | 4608175dea3771c4060cc9a09ac6c7d4f8d8b535 /Bugzilla/Token.pm | |
parent | Bug 132066 - add a note to the login page about needing cookies for a good us... (diff) | |
download | bugzilla-cbef267df28e3befd53e6982773558c5acafd661.tar.gz bugzilla-cbef267df28e3befd53e6982773558c5acafd661.tar.bz2 bugzilla-cbef267df28e3befd53e6982773558c5acafd661.zip |
Bug 237864: clean up leftovers from the bug 192516 checkin (some occurances of Token got missed)
r= gerv, a= justdave
Diffstat (limited to 'Bugzilla/Token.pm')
-rw-r--r-- | Bugzilla/Token.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Bugzilla/Token.pm b/Bugzilla/Token.pm index 20ce48050..d7d326ccc 100644 --- a/Bugzilla/Token.pm +++ b/Bugzilla/Token.pm @@ -26,7 +26,7 @@ # Make it harder for us to do dangerous things in Perl. use strict; -# Bundle the functions in this file together into the "Token" package. +# Bundle the functions in this file together into the "Bugzilla::Token" package. package Bugzilla::Token; use Bugzilla::Config; @@ -247,7 +247,7 @@ sub DeletePasswordTokens { "WHERE userid=? AND tokentype='password'"); $sth->execute($userid); while (my $token = $sth->fetchrow_array) { - Token::Cancel($token, $reason); + Bugzilla::Token::Cancel($token, $reason); } } |