This commit is contained in:
Shish 2019-11-27 11:51:23 +00:00
parent 95ef5940fc
commit 33f564994d

View File

@ -8,7 +8,7 @@ class IPBanTable extends Table {
$this->table = "bans";
$this->base_query = "
SELECT *, users.name AS banner
SELECT bans.*, users.name AS banner
FROM bans JOIN users ON banner_id=users.id
";