Reindent comment
add missing
This commit is contained in:
parent
94ceb10771
commit
c833d2131e
1 changed files with 17 additions and 24 deletions
|
@ -259,30 +259,23 @@ function checkUserValidity($login, $password, $clientApplication, $cp, &$id, &$r
|
|||
$res = false;
|
||||
}
|
||||
} else {
|
||||
|
||||
// // check if the user not already online
|
||||
// if ($row["State"] != "Offline")
|
||||
// {
|
||||
// if ($row["State"] != "Offline") {
|
||||
// $reason = "$login is already online and ";
|
||||
// // ask the LS to remove the client
|
||||
// if (disconnectClient ($row["ShardId"], $row["UId"], $tempres))
|
||||
// {
|
||||
// if (disconnectClient($row["ShardId"], $row["UId"], $tempres)) {
|
||||
// $reason = $reason . "was just disconnected. Now you can retry the identification (error code 54)";
|
||||
//
|
||||
|
||||
// $query = "update shard set NbPlayers=NbPlayers-1 where ShardId=" . $row["ShardId"];
|
||||
// $result = mysqli_query($link, $query) or die("Can't execute the query: '$query' errno:" . mysqli_errno($link) . ": " . mysqli_error($link));
|
||||
//
|
||||
|
||||
// $query = "update user set ShardId=-1, State='Offline' where UId=" . $row["UId"];
|
||||
// $result = mysqli_query($link, $query) or die("Can't execute the query: '$query' errno:" . mysqli_errno($link) . ": " . mysqli_error($link));
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// } else {
|
||||
// $reason = $reason . "can't be disconnected: $tempres (error code 55)";
|
||||
// }
|
||||
// $res = false;
|
||||
// }
|
||||
// else
|
||||
// {
|
||||
// } else {
|
||||
$id = $row["UId"];
|
||||
$priv = $row["Privilege"];
|
||||
$extended = $row["ExtendedPrivilege"];
|
||||
|
|
Loading…
Reference in a new issue