mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-10-13 18:04:54 +02:00
TFS 1.0: House auction system
Would be great if somebody could test it out properly for me. :)
This commit is contained in:
@@ -1414,7 +1414,7 @@ function user_exist($username) {
|
||||
return (mysql_result(mysql_query("SELECT COUNT('id') FROM `accounts` WHERE `name`='$username';"), 0) == 1) ? true : false;
|
||||
}
|
||||
|
||||
function user_name($id) { //USERNAME FROM PLAYER ID (Hauni@otland.net)
|
||||
function user_name($id) { //USERNAME FROM PLAYER ID
|
||||
$id = (int)$id;
|
||||
$name = mysql_select_single("SELECT `name` FROM `players` WHERE `id`='$id';");
|
||||
if ($name !== false) return $name['name'];
|
||||
|
Reference in New Issue
Block a user