Opened 9 months ago
Closed 9 months ago
#21640 closed enhancement (fixed)
Incorrect datatype for $post_type param in PHPDocs for count_many_users_posts
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.5 |
| Component: | Inline Docs | Version: | 3.2 |
| Severity: | normal | Keywords: | has-patch commit |
| Cc: |
Description
count_many_users_posts has supported passing the post_type as a second param since #17220 [17742] however the @param PHPDocs for the $post_type parameter incorrectly list the datatype as string|array when in-fact it should be string.
Passing an array causes a PHP error because the $post_type param is passed to get_posts_by_author_sql which assumes it is a string.
Warning: Illegal offset type in isset or empty in /wp-includes/post.php on line 840
Attached patch sets the PHPDocs @param datatype for the post_type param to string.
Attachments (1)
Change History (3)
Note: See
TracTickets for help on using
tickets.

In [21747]: