mirror of
https://github.com/Shadowss/TravianZ.git
synced 2026-06-30 09:34:28 +00:00
Insttal Mysqli fix
This commit is contained in:
@@ -17,7 +17,7 @@ class MYSQLi_DB {
|
||||
$this->connection = mysqli_connect(SQL_SERVER, SQL_USER, SQL_PASS, SQL_DB) or die(mysqli_error());
|
||||
}
|
||||
function query($query) {
|
||||
return $this->connection->query($query);
|
||||
return mysqli_query($this->connection, $query);
|
||||
}
|
||||
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user