Opened 13 years ago
Closed 13 years ago
#21640 closed enhancement (fixed)
Incorrect datatype for $post_type param in PHPDocs for count_many_users_posts
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Milestone: | 3.5 | Priority: | normal |
| Severity: | normal | Version: | 3.2 |
| Component: | Inline Docs | Keywords: | has-patch commit |
| Focuses: | 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]: