bad class bug

This commit is contained in:
lopar 2018-03-03 22:54:01 +02:00
parent 1c8cdec3eb
commit a86e5a6cd7
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ if (empty($user['battle']) && ($user['hp'] < @$user['maxhp'])) {
$inder = filter_input(INPUT_COOKIE, 'inder');
if (!isset($banks['id'])) {
$banks = db::c()->query('SELECT `id`, `cr`, `ekr` FROM `bank` WHERE `id` = "?s" AND `owner` = "?s" LIMIT 1', $inder, $u->i()['id'])->fetch_assoc();
$banks = db::c()->query('SELECT `id`, `cr`, `ekr` FROM `bank` WHERE `id` = "?s" AND `owner` = "?s" LIMIT 1', $inder, $user['id'])->fetch_assoc();
}
function auth_bank($id, $pass, $us)