Opened 14 years ago
Closed 13 years ago
#17938 closed defect (bug) (fixed)
Prevent fatal errors caused by admin-ajax.php's use of wp_insert_term()
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 3.4 | Priority: | normal |
Severity: | normal | Version: | 3.2 |
Component: | Administration | Keywords: | has-patch |
Focuses: | Cc: |
Description
wp_insert_term()
can return a WP_Error
, but admin-ajax.php does not catch these errors. In two places (when adding post and link categories during post/link creation), the result of wp_insert_term()
is blindly assumed to be an array, which will cause a fatal error.
Attached checks for errors and skips that category. The patch does not implement any error messaging to the user.
See also #17936.
Attachments (1)
Change History (5)
Note: See
TracTickets for help on using
tickets.
#17939 is related, and has a comprehensive patch for both of the issues.