mirror of
https://port.numenaute.org/aleajactaest/khanat-code-old.git
synced 2024-11-11 01:40:00 +00:00
Disable WG specifics in r2_login script
This commit is contained in:
parent
c19130574e
commit
a83849a38e
1 changed files with 6 additions and 2 deletions
|
@ -337,7 +337,9 @@
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
$reason = errorMsg(2001, $login, 'checkUserValidity');
|
||||||
// Check if this is not an unconfirmed account
|
// Check if this is not an unconfirmed account
|
||||||
|
/*
|
||||||
$query = "SELECT GamePassword, Email, Language FROM signup_data WHERE login='$login'";
|
$query = "SELECT GamePassword, Email, Language FROM signup_data WHERE login='$login'";
|
||||||
$result = mysqli_query($link, $query) or die (errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
$result = mysqli_query($link, $query) or die (errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||||
|
|
||||||
|
@ -369,6 +371,7 @@
|
||||||
$reason = errorMsg(2004, 'db signup_data');
|
$reason = errorMsg(2004, 'db signup_data');
|
||||||
$res = false;
|
$res = false;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
@ -496,8 +499,9 @@
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
die (errorMsgBlock(2001, $login, 'askSalt'));
|
||||||
// Check if this is not an unconfirmed account
|
// Check if this is not an unconfirmed account
|
||||||
$query = "SELECT GamePassword, Language FROM signup_data WHERE login='$login'";
|
/*$query = "SELECT GamePassword, Language FROM signup_data WHERE login='$login'";
|
||||||
$result = mysqli_query($link, $query) or die (errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
$result = mysqli_query($link, $query) or die (errorMsgBlock(3006, $query, 'main', $DBName, $DBHost, $DBUserName, mysqli_error($link)));
|
||||||
|
|
||||||
if (mysqli_num_rows($result) == 0)
|
if (mysqli_num_rows($result) == 0)
|
||||||
|
@ -524,7 +528,7 @@
|
||||||
setMsgLanguage(array_keys($languages));
|
setMsgLanguage(array_keys($languages));
|
||||||
}
|
}
|
||||||
die (errorMsgBlock(2003));
|
die (errorMsgBlock(2003));
|
||||||
}
|
}*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue