Opened 6 years ago
Closed 6 years ago
#46028 closed defect (bug) (fixed)
Block Editor: Unable to enable Custom Fields due to out-of-order merges
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 5.1 | Priority: | normal |
Severity: | normal | Version: | 5.1 |
Component: | Editor | Keywords: | has-patch |
Focuses: | Cc: |
Description
After switching WordPress.org from /branches/5.0
to /trunk
it appears that we lost the ability to enable Custom Fields.
Upon digging into it(slack) I've realised that two merge commits were done in such a way that a later merge commit brought over an older commit that had been covered by an earlier merge, specifically:
- [44244] merged in [43885/branches/5.0/src/wp-admin/includes/meta-boxes.php]
- [44260] merged in [43861/branches/5.0/src/wp-admin/includes/meta-boxes.php] which overwrite the newer commit above
Attachments (1)
Change History (5)
#2
@
6 years ago
Visual check of 46028.diff looks correct.
Testing on WordPress.org seems right, The option to select Custom Fields is now present within the editor.
Testing on WordPress.org and removing the metabox using the remove_meta_box() example in a mu-plugin has the intended effect of no longer being able to select again.
Looks good to me @pento
46028.diff fixes it issue for me.
@dd32, how does this look to you?