From 3514b985595e35b69dd3a4e0819aa94dc80a399f Mon Sep 17 00:00:00 2001 From: "timeless%mozdev.org" <> Date: Tue, 10 Jul 2007 12:08:12 +0000 Subject: Bug 365472 rename 'token_inexistent' to 'token_does_not_exist' or something r=lpsolit a=lpsolit --- token.cgi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'token.cgi') diff --git a/token.cgi b/token.cgi index 66ce2c052..a07a969fd 100755 --- a/token.cgi +++ b/token.cgi @@ -72,7 +72,7 @@ if ($cgi->param('t')) { # Make sure the token exists in the database. my ($tokentype) = $dbh->selectrow_array('SELECT tokentype FROM tokens WHERE token = ?', undef, $::token); - $tokentype || ThrowUserError("token_inexistent"); + $tokentype || ThrowUserError("token_does_not_exist"); # Make sure the token is the correct type for the action being taken. if ( grep($::action eq $_ , qw(cfmpw cxlpw chgpw)) && $tokentype ne 'password' ) { -- cgit v1.2.3-24-g4f1b