&& ($event eq 'attachment' . $attachment->id))
{
# The token is invalid.
- ThrowUserError('token_inexistent');
+ ThrowUserError('token_does_not_exist');
}
# The token is valid. Delete the content of the attachment.
&& ($old_bug_id =~ "^createbug:"))
{
# The token is invalid.
- ThrowUserError('token_inexistent');
+ ThrowUserError('token_does_not_exist');
}
$old_bug_id =~ s/^createbug://;
<tt>[% product FILTER html %]</tt> product, which exceeds the maximum of
[%+ max FILTER html %] votes for this product.
- [% ELSIF error == "token_inexistent" %]
+ [% ELSIF error == "token_does_not_exist" %]
[% title = "Token Does Not Exist" %]
The token you submitted does not exist, has expired, or has
been canceled.
# 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' ) {