mirror of
https://github.com/vrana/adminer.git
synced 2026-06-17 06:32:46 +02:00
Fix handling of 64 bit numbers in auto_increment
This commit is contained in:
@@ -33,7 +33,7 @@ if ($_GET["script"] == "db") {
|
||||
json_row("");
|
||||
|
||||
} elseif ($_GET["script"] == "kill") {
|
||||
$connection->query("KILL " . (+$_POST["kill"]));
|
||||
$connection->query("KILL " . number($_POST["kill"]));
|
||||
|
||||
} else { // connect
|
||||
foreach (count_tables($adminer->databases()) as $db => $val) {
|
||||
|
||||
Reference in New Issue
Block a user