1
0
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:
Marc Alexander
2016-02-03 22:03:31 +01:00
parent c9541e0795
commit b39b3da5af
2 changed files with 2 additions and 2 deletions

View File

@@ -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>';
}
/**