#5246 closed defect (bug) (fixed)
size_format doesn't work for TB
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 2.5 | Priority: | normal |
Severity: | normal | Version: | |
Component: | General | Keywords: | size_format has-patch |
Focuses: | Cc: |
Description
size_format
runs the number through int_val
, which casts it to int
, which is usually only 32 bits. Not enough for terabytes.
Attachments (2)
Change History (5)
#1
@
17 years ago
Simpler patch included - this one just uses doubleval() in place of intval().
Both pass unit tests incidentally - see test_size_format() in http://svn.automattic.com/wordpress-tests/wp-testcase/test_includes_functions.php.
Note: See
TracTickets for help on using
tickets.
simpler patch with doubleval()