mirror of
https://github.com/vrana/adminer.git
synced 2026-03-01 18:11:21 +01:00
Allow using number_type() as pattern
This commit is contained in:
@@ -820,7 +820,7 @@ class Adminer {
|
||||
foreach ($row as $key => $val) {
|
||||
$field = $fields[$key];
|
||||
$row[$key] = ($val !== null
|
||||
? unconvert_field($field, preg_match('~' . number_type() . '~', $field["type"]) && $val != '' ? $val : q($val))
|
||||
? unconvert_field($field, preg_match(number_type(), $field["type"]) && $val != '' ? $val : q($val))
|
||||
: "NULL"
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user