diff --git a/signup/signup-handler.php b/signup/signup-handler.php index 2b8313c..270f659 100644 --- a/signup/signup-handler.php +++ b/signup/signup-handler.php @@ -69,7 +69,7 @@ if (isset($_REQUEST["username"]) && isset($_REQUEST["email"])) { $message .= "
  • username too long (32 character max)
  • "; if (!preg_match('/^[a-z][a-z0-9]{1,31}$/', $name)) - $message .= "
  • username contains invalid characters (lowercase only, must start with a letter)
  • "; + $message .= "
  • username contains invalid characters (lowercase ascii only, must start with a letter)
  • "; if ($_REQUEST["sshkey"] == "" || mb_substr($_REQUEST["sshkey"], 0, 4) !== "ssh-") $message .= '
  • ssh key required: please create one and submit the public key. '