Opened 4 years ago
Closed 4 years ago
#51483 closed defect (bug) (fixed)
2 elements with non unique id #_wpnonce in post.php
Reported by: | vandestouwe | Owned by: | ocean90 |
---|---|---|---|
Milestone: | 5.7 | Priority: | normal |
Severity: | normal | Version: | 5.0 |
Component: | Editor | Keywords: | has-patch |
Focuses: | Cc: |
Description
In the file post.php when a page is edited 2 element are found to have the same id.
- on line 2306: <?php wp_nonce_field( 'toggle-custom-fields'); ?>
- on line 2424: wp_nonce_field( $nonce_action);
Both forms are active causing a warning on the console of the webbrowser
In the included php file both lines have been given a unique id
Attachments (4)
Change History (15)
#1
@
4 years ago
- Keywords reporter-feedback added
Hi @vandestouwe, welcome on trac!
Could you please a bit more information about the issue. Is that happening with the new block editor? Do you have some special plugins enabled like Classic Editor?
Could you also check that link in order to create a valid patch in trac.
https://make.wordpress.org/core/handbook/tutorials/working-with-patches/
https://make.wordpress.org/core/handbook/best-practices/writing-patches/
If you're familiar with code and git, you can use the wordpress-develop Github repository to easily contribute to WordPress: https://make.wordpress.org/core/handbook/contribute/git/
#3
@
4 years ago
I'm using the bock editor. The warning comes when i want to edit the page. No special plugins are installed. This is a normal page with a form as you can see in link: https://www.vandestouwe.com/subscribe when I want to edit this page you can find the warning message on the console of the web browser.
#5
@
4 years ago
- Keywords needs-refresh added
- Milestone changed from Awaiting Review to 5.7
I was able to confirm the bug locally.
@vandestouwe: Could you please refresh the patch? It no longer applies cleanly.
#6
@
4 years ago
- Keywords needs-refresh removed
Hi @noisysocks I have refreshed the patch, applied coding standards and removed an unused local variable as well.
#7
@
4 years ago
- Keywords commit added
Thanks @Mista-Flo! LGTM, though we'll still want the space before the />
.
#8
follow-up:
↓ 9
@
4 years ago
- Focuses ui coding-standards removed
- Keywords needs-patch added; has-patch commit removed
- Version changed from 5.5.1 to 5.0
This is related to #23165, especially the comment ticket:23165:15. For now I'd suggest to only change toggle-custom-fields
. Please keep in mind that you also have to set the $query_arg
parameter for the check_admin_referer() call.
#9
in reply to:
↑ 8
@
4 years ago
- Keywords has-patch added; needs-patch removed
Replying to ocean90:
This is related to #23165, especially the comment ticket:23165:15. For now I'd suggest to only change
toggle-custom-fields
. Please keep in mind that you also have to set the$query_arg
parameter for the check_admin_referer() call.
Hi @ocean90, good catch, thanks for the help! I fixed the issue in last patch
The corrected post.php