Merge pull request #4 from jonthekiller/jonthekiller-patch-4
Add search by Nickname
This commit is contained in:
commit
f226fefab8
@ -579,7 +579,8 @@ class PlayerManager implements CallbackListener, TimerListener, CommunicationLis
|
|||||||
$mysqli = $this->maniaControl->getDatabase()->getMysqli();
|
$mysqli = $this->maniaControl->getDatabase()->getMysqli();
|
||||||
|
|
||||||
$query = "SELECT * FROM `" . self::TABLE_PLAYERS . "`
|
$query = "SELECT * FROM `" . self::TABLE_PLAYERS . "`
|
||||||
WHERE `login` LIKE '" . $mysqli->escape_string($playerLogin) . "';";
|
WHERE `login` LIKE '" . $mysqli->escape_string($playerLogin) . "'
|
||||||
|
OR `nickname` LIKE '" . $mysqli->escape_string($playerLogin) . "';";
|
||||||
$result = $mysqli->query($query);
|
$result = $mysqli->query($query);
|
||||||
if (!$result) {
|
if (!$result) {
|
||||||
trigger_error($mysqli->error);
|
trigger_error($mysqli->error);
|
||||||
|
Loading…
Reference in New Issue
Block a user