Opened 16 months ago
Last modified 15 months ago
#20003 closed defect (bug)
Removing a featured image breaks the ability to set a featured image — at Version 3
| Reported by: |
|
Owned by: | |
|---|---|---|---|
| Priority: | normal | Milestone: | 3.4 |
| Component: | General | Version: | |
| Severity: | normal | Keywords: | has-patch |
| Cc: | batmoo, wordpress@… |
Description (last modified by SergeyBiryukov)
Repro steps:
- Create a new post
- Upload an image and set it as the featured image
- Click on "Remove featured image"
- Click on "Add featured image"
- The Gallery tab isn't shown. Neither is the "Set featured image" for any uploaded images.
Problem is that in wp_ajax_set_post_thumbnail, the $post_ID variable isn't globalized, which _wp_post_thumbnail_html expects.
Related to the ajax re-org #15327 -- other things are possibly broken as well.
Change History (4)
Note: See
TracTickets for help on using
tickets.

Patch globalizes $post_ID in the wp_ajax_set_post_thumbnail context.