remove double check for emtpy sshkey

This commit is contained in:
creme 2020-02-02 10:52:59 +01:00
parent 7988ddb6ae
commit 6b465e8b03
Signed by untrusted user: creme
GPG Key ID: C147C3B7FBDF08D0
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ if (isset($_REQUEST["username"]) && isset($_REQUEST["email"])) {
. 'see our <a href="https://tilde.team/wiki/?page=ssh">ssh wiki</a> or '
. 'hop on <a href="https://web.tilde.chat/?join=team">irc</a> and ask for help</li>';
else {
if ($sshkey != "" && forbidden_sshkey($sshkey)) {
if (forbidden_sshkey($sshkey)) {
$message .= "<li>your sshkey is banned!</li>\n";
add_ban_info($name, $email);
}