diff options
author | timeless%mozdev.org <> | 2007-07-10 12:08:12 +0000 |
---|---|---|
committer | timeless%mozdev.org <> | 2007-07-10 12:08:12 +0000 |
commit | 3514b985595e35b69dd3a4e0819aa94dc80a399f (patch) | |
tree | aa832c9cd0f5edcff5cb14cb2ca730d312f38544 /token.cgi | |
parent | 01d861201262d8d738369fb3796ea15de3e7427c (diff) | |
download | bugs-3514b985595e35b69dd3a4e0819aa94dc80a399f.tar bugs-3514b985595e35b69dd3a4e0819aa94dc80a399f.tar.gz bugs-3514b985595e35b69dd3a4e0819aa94dc80a399f.tar.bz2 bugs-3514b985595e35b69dd3a4e0819aa94dc80a399f.tar.xz bugs-3514b985595e35b69dd3a4e0819aa94dc80a399f.zip |
Bug 365472 rename 'token_inexistent' to 'token_does_not_exist' or something
r=lpsolit a=lpsolit
Diffstat (limited to 'token.cgi')
-rwxr-xr-x | token.cgi | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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' ) { |