#24343 closed defect (bug) (fixed)
Correct inline docs for hook parameters in wp_delete_term()
Reported by: | SergeyBiryukov | Owned by: | SergeyBiryukov |
---|---|---|---|
Milestone: | 3.6 | Priority: | normal |
Severity: | normal | Version: | 2.6 |
Component: | Inline Docs | Keywords: | needs-codex |
Focuses: | Cc: |
Description
According to @uses
comment in wp_delete_term()
, delete_term
and delete_$taxonomy
actions receive term object and term ID as the first two parameters:
http://core.trac.wordpress.org/browser/tags/3.5.1/wp-includes/taxonomy.php#L1754
This isn't the case. $term
is an ID, so the first two parameters are term ID and term taxonomy ID:
http://core.trac.wordpress.org/browser/tags/3.5.1/wp-includes/taxonomy.php#L1838
The comment also doesn't reflect the change in [21939].
Change History (3)
Note: See
TracTickets for help on using
tickets.
In 24261: