#17364 closed defect (bug) (fixed)
Validate the HTML in the admin area
| Reported by: |
|
Owned by: |
|
|---|---|---|---|
| Priority: | normal | Milestone: | 3.2 |
| Component: | Administration | Version: | 3.2 |
| Severity: | normal | Keywords: | has-patch |
| Cc: | nacin |
Description
Well-formness fixes for WordPress Admin interface
Attachments (4)
Change History (12)
peaceablewhale
— 2 years ago
comment:2
peaceablewhale
— 2 years ago
Changed, thanks! :)
comment:3
ocean90
— 2 years ago
- Cc nacin added
- Milestone changed from Awaiting Review to 3.2
- Summary changed from Well-formness fixes for WordPress Admin interface to Validate the HTML in the admin area
Added a patch to make the admin area HTML valid on some pages again.
One problem still exists: ID "awaiting-mod" already defined on each page when a comment is in moderation because now the collapsed menu shows also the bubble.
xknown
— 2 years ago
Use esc_url instead of esc_html in /wp-admin/includes/class-wp-users-list-table.php
comment:5
ocean90
— 2 years ago
xknown, the problem was, that through esc_url() it becomes something like &#...
comment:6
ocean90
— 2 years ago
17364.2.patch includes a fix for the ID "awaiting-mod" already defined issue. Use class instead of id.
The usage of wp_nonce_url without a nonce isn't ideal. You're probably looking for esc_url() or similar there