mirror of
https://github.com/vrana/adminer.git
synced 2025-08-08 15:47:00 +02:00
Allow bigger numbers under 32 bits
This commit is contained in:
@@ -640,7 +640,7 @@ function process_input($field) {
|
||||
if ($value == "") {
|
||||
return "NULL";
|
||||
}
|
||||
return intval($value);
|
||||
return +$value;
|
||||
}
|
||||
if ($field["auto_increment"] && $value == "") {
|
||||
return null;
|
||||
|
Reference in New Issue
Block a user