mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-31 22:10:45 +02:00
[ticket/14272] Allow input of floats for filesize
This might be needed while switching the default input from KiB to MiB or similar changes to settings. PHPBB3-14272
This commit is contained in:
@@ -1736,7 +1736,7 @@ class acp_attachments
|
||||
$value = $filesize['value'];
|
||||
|
||||
// size and maxlength must not be specified for input of type number
|
||||
return '<input type="number" id="' . $key . '" min="0" max="999999999999999" name="config[' . $key . ']" value="' . $value . '" /> <select name="' . $key . '">' . size_select_options($size_var) . '</select>';
|
||||
return '<input type="number" id="' . $key . '" min="0" max="999999999999999" step="any" name="config[' . $key . ']" value="' . $value . '" /> <select name="' . $key . '">' . size_select_options($size_var) . '</select>';
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user