Skip to content

Commit

Permalink
Fix some minor Travis complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
aj-gh authored and andygrunwald committed Feb 4, 2019
1 parent a1d967e commit 6e53100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/usrmgr/Functions/CheckDuplicateAndValidEmail.php
Expand Up @@ -28,11 +28,11 @@ function CheckDuplicateAndValidEmail($email)

// Check if we already have a user with that email address
$row = $db->qry_first('SELECT * FROM %prefix%user WHERE email = %string%', $email);
if ($row){
if ($row) {
return t('Diese E-Mail-Adresse ist bereits in Verwendung. Bitte verwende die "Passwort zurücksetzen"-Funktion, um dein Passwort zurück zu setzen');
}
}

// All checks succeeded; call global email validation routine
return CheckValidEmail($email);
return CheckValidEmail($email);
}

0 comments on commit 6e53100

Please sign in to comment.