mirror of
https://github.com/vrana/adminer.git
synced 2025-08-11 17:14:07 +02:00
Allow bigger numbers under 32 bits
This commit is contained in:
@@ -58,7 +58,7 @@ if ($in) {
|
||||
echo "<tr><th>" . $adminer->fieldName($field);
|
||||
$value = $_POST["fields"][$name];
|
||||
if ($value != "" && ereg("enum|set", $field["type"])) {
|
||||
$value = intval($value);
|
||||
$value = +$value;
|
||||
}
|
||||
input($field, $value, (string) $_POST["function"][$name]); // param name can be empty
|
||||
echo "\n";
|
||||
|
Reference in New Issue
Block a user