summaryrefslogtreecommitdiffstats
path: root/token.cgi
diff options
context:
space:
mode:
authorDylan William Hardison <dylan@hardison.net>2017-07-05 20:43:18 +0200
committerDylan William Hardison <dylan@hardison.net>2017-07-07 00:19:20 +0200
commit37722eca39874bb6abdcd120e3e458bd62dea62b (patch)
tree57a9a9970c00ec77baecab7e154ef7dfcef863fe /token.cgi
parenta6f98de0d4e842351222b0173a1fff151da8738e (diff)
downloadbugzilla-37722eca39874bb6abdcd120e3e458bd62dea62b.tar.gz
bugzilla-37722eca39874bb6abdcd120e3e458bd62dea62b.tar.xz
Bug 1377933 - Remove trailing whitespace from all perl files
Diffstat (limited to 'token.cgi')
-rwxr-xr-xtoken.cgi14
1 files changed, 7 insertions, 7 deletions
diff --git a/token.cgi b/token.cgi
index 136e76137..9cfe37b57 100755
--- a/token.cgi
+++ b/token.cgi
@@ -159,7 +159,7 @@ if ($action eq 'reqpw') {
verify_mfa_login($token);
} elsif ($action eq 'mfa_p') {
verify_mfa_password($token);
-} else {
+} else {
ThrowUserError('unknown_action', {action => $action});
}
@@ -275,13 +275,13 @@ sub changeEmail {
if(lc($cgi->param('email')) ne lc($old_email)) {
ThrowUserError("email_confirmation_failed");
}
- # The new email address should be available as this was
+ # The new email address should be available as this was
# confirmed initially so cancel token if it is not still available
if (! is_available_username($new_email,$old_email)) {
$vars->{'email'} = $new_email; # Needed for Bugzilla::Token::Cancel's mail
Bugzilla::Token::Cancel($token, "account_exists", $vars);
ThrowUserError("account_exists", { email => $new_email } );
- }
+ }
# Update the user's login name in the profiles table and delete the token
# from the tokens table.
@@ -330,7 +330,7 @@ sub cancelChangeEmail {
my $actualemail = $dbh->selectrow_array(
q{SELECT login_name FROM profiles
WHERE userid = ?}, undef, $userid);
-
+
# check to see if it has been altered
if($actualemail ne $old_email) {
# XXX - This is NOT safe - if A has change to B, another profile
@@ -348,8 +348,8 @@ sub cancelChangeEmail {
$user->derive_regexp_groups;
$vars->{'message'} = "email_change_canceled_reinstated";
- }
- }
+ }
+ }
else {
$vars->{'message'} = 'email_change_canceled'
}
@@ -397,7 +397,7 @@ sub confirm_create_account {
$cgi->delete('passwd1', 'passwd2');
my $otheruser = Bugzilla::User->create({
- login_name => $login_name,
+ login_name => $login_name,
realname => scalar $cgi->param('realname'),
cryptpassword => $password});