Opened 16 years ago
Closed 14 years ago
#12915 closed enhancement (duplicate)
When uploading a file, remaining disk space has too many digits.
| Reported by: | giovans | Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | |
| Component: | Import | Version: | |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: |
Description
When I'm importing a blog the upload form shows to me a message telling the maximum size allowed for the file.
If my remaining size is less than the max_upload_file_size, the former is showed. Tipically this number is not a perfect power of two.
So the message says: (Maximum size: 4.5334252MB).
I think this information is slightly too detailed.
This can be changed in the following way:
In the file /wp-admin/includes/template.php ,
in the function wp_convert_bytes_to_hr
Change:
$size = pow(1024, $log - $power);
To:
$size = sprintf("%.2f",pow(1024, $log - $power))
;
Or something like that.
Thanks for your attention and amazing work.
Giovans
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Round output of max upload file size to 2 decimal places