From cbef267df28e3befd53e6982773558c5acafd661 Mon Sep 17 00:00:00 2001 From: "justdave%syndicomm.com" <> Date: Thu, 18 Mar 2004 17:01:34 +0000 Subject: Bug 237864: clean up leftovers from the bug 192516 checkin (some occurances of Token got missed) r= gerv, a= justdave --- token.cgi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'token.cgi') diff --git a/token.cgi b/token.cgi index f91889009..2a0f3c515 100755 --- a/token.cgi +++ b/token.cgi @@ -157,7 +157,7 @@ exit; ################################################################################ sub requestChangePassword { - Token::IssuePasswordToken($cgi->param('loginname')); + Bugzilla::Token::IssuePasswordToken($cgi->param('loginname')); $vars->{'message'} = "password_change_request"; @@ -236,8 +236,8 @@ sub changeEmail { # The new email address should be available as this was # confirmed initially so cancel token if it is not still available if (! ValidateNewUser($new_email,$old_email)) { - $vars->{'email'} = $new_email; # Needed for Token::Cancel's mail - Token::Cancel($::token,"account_exists"); + $vars->{'email'} = $new_email; # Needed for Bugzilla::Token::Cancel's mail + Bugzilla::Token::Cancel($::token,"account_exists"); ThrowUserError("account_exists", { email => $new_email } ); } -- cgit v1.2.3-24-g4f1b