Remove spaces from username in login.php, remove pinglogin

master
Skylar Ittner 8 years ago
parent affc1d863b
commit 0565418731

@ -10,6 +10,8 @@ if (is_empty($VARS['pass'])) {
sendError("Missing password.", true);
}
$VARS['user'] = str_replace(" ", "", $VARS['user']);
/* Insert code to check login here, it should return "OK" or an error string */
/* ------------------------------- */