Opened 6 years ago
Closed 6 years ago
#47095 closed defect (bug) (fixed)
PHPDocs: Correction in inline docs for last_query
Reported by: | nextendweb | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | 5.3 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Database | Keywords: | has-patch |
Focuses: | docs | Cc: |
Description
In the file wp-includes/wp-db.php the $last_query property described as array in PHPDoc while it is a string.
Original:
<?php /** * Last query made * * @since 0.71 * @var array */ var $last_query;
Updated:
<?php /** * Last query made * * @since 0.71 * @var string */ var $last_query;
Attachments (1)
Change History (4)
#1
@
6 years ago
- Keywords has-patch added
- Summary changed from wpdb documentation last_query is a string to PHPDocs: Correction in inline docs for last_query
- Type changed from enhancement to defect (bug)
- Version 5.1.1 deleted
Note: See
TracTickets for help on using
tickets.
In 45430: