mirror of
https://github.com/Bandit42/auth-site.git
synced 2026-01-16 23:04:23 -05:00
Merge pull request #2 from swgresurgence/patch-2
Fixed bug with logging.
This commit is contained in:
@@ -43,8 +43,8 @@ function checkhashSSHA($salt, $password) {
|
||||
|
||||
$username = $mysqli->real_escape_string($_POST['user_name']);
|
||||
$password = $mysqli->real_escape_string($_POST['user_password']);
|
||||
$ip = urldecode($_POST['ip']);
|
||||
$suid = urldecode($_POST['stationID']);
|
||||
$ip = $_POST['ip'];
|
||||
$suid = $_POST['stationID'];
|
||||
$user = getUserByEmailAndPassword($username, $password);
|
||||
|
||||
// #######################################################################
|
||||
|
||||
Reference in New Issue
Block a user