#60364 closed defect (bug) (fixed)
Incorrect argument type given on number_format
| Reported by: | krishneup | Owned by: | SergeyBiryukov |
|---|---|---|---|
| Priority: | normal | Milestone: | 6.7 |
| Component: | Site Health | Version: | |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: |
Description (last modified by )
Argument #1 ($num) must be of type float, string given in /var/www/src/wp-admin/includes/class-wp-debug-data.php:587
Change History (10)
#2
@
3 years ago
Sorry for the wrong line number.
here's the MR link - https://github.com/WordPress/wordpress-develop/pull/5960
#3
in reply to: ↑ 1
;
follow-up:
↓ 8
@
3 years ago
Replying to audrasjb:
Hello, welcome to WordPress Core Trac and thank you for opening this ticket,
Could you please specify the exact function where the issue is located?
L587 doesn't correspond to your issue: https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-admin/includes/class-wp-debug-data.php#L587
Thanks
Now I understand why my PR wasn't linked here. I am sorry for troubling you, it seems my github account has a bug, which I probably need to report with Github support team.
These were my changes: https://ibb.co/59HWPjJ
Unfortunately, you may not able to see my MR.
#4
@
3 years ago
- Description modified (diff)
The PR proposes to run floatval() within number_format() on line 585:
'value' => number_format( floatval( $max_file_uploads ) ),
- Should this test use
number_format_i18n()instead ofnumber_format()? - Could it use
(float)instead offloatval()? - Would it be better to assign the type when setting the variable?
$max_file_uploads = (float) ini_get( 'max_file_uploads' );
The test was added in [48535].
#5
@
2 years ago
- Milestone Awaiting Review → 6.7
Hi there, welcome to WordPress Trac! Thanks for the ticket.
I was able to reproduce the issue with the strict_types PHP setting turned on.
Since the goal of the Site Health Info screen is to display raw values where possible, I believe we can just remove the number_format() call here, as the other values in the same section, e.g. file_uploads, post_max_size, or upload_max_filesize are displayed as is.
This ticket was mentioned in PR #5960 on WordPress/wordpress-develop by krishneup.
2 years ago
#7
Error:
number_format(): Argument 1 ($num) must be of type float, string given in /var/www/src/wp-admin/includes/class-wp-debug-data.php
Few things:
- ini_get returns string data type .
- number_format expects first argument to be float number, but here string is provided.
Trac ticket: https://core.trac.wordpress.org/ticket/60364
#8
in reply to: ↑ 3
@
2 years ago
Replying to krishneup:
Now I understand why my PR wasn't linked here. I am sorry for troubling you, it seems my github account has a bug, which I probably need to report with Github support team.
It appears that the PR was not linked because the Trac ticket link used the GitHub markdown formatting:
Trac ticket: [https://core.trac.wordpress.org/ticket/60364](https://core.trac.wordpress.org/ticket/60364)
I've updated it to a plain URL:
Trac ticket: https://core.trac.wordpress.org/ticket/60364
and the PR is properly linked here now.
@SergeyBiryukov commented on PR #5960:
2 years ago
#10
Thanks for the PR! Merged in r58847.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
Hello, welcome to WordPress Core Trac and thank you for opening this ticket,
Could you please specify the exact function where the issue is located?
L587 doesn't correspond to your issue: https://github.com/WordPress/wordpress-develop/blob/trunk/src/wp-admin/includes/class-wp-debug-data.php#L587
Thanks