Opened 7 years ago
Closed 7 years ago
#47095 closed defect (bug) (fixed)
PHPDocs: Correction in inline docs for last_query
| Reported by: | nextendweb | Owned by: | SergeyBiryukov |
|---|---|---|---|
| Priority: | normal | Milestone: | 5.3 |
| Component: | Database | Version: | |
| Severity: | normal | Keywords: | has-patch |
| Cc: | Focuses: | docs |
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)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
In 45430: