Opened 14 years ago
Closed 10 years ago
#15659 closed defect (bug) (fixed)
Entity escaping needed for comments list table
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 4.4 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Comments | Keywords: | has-patch commit |
Focuses: | administration | Cc: |
Description
Perhaps only as a result of the fact that the URL will be truncated for display, it is possible that URLs will have entities in URLs such as & truncated, thereby creating a non-well-formed entity for application/xhtml+xml . The following patch fixes it (quotation escaping is not needed since this is element content).
This is an easy fix which I hope can be applied given that its lack breaks reviewing the important comments editing page. Thanks.
Attachments (5)
Change History (12)
#1
@
14 years ago
- Component changed from General to Administration
- Milestone changed from Awaiting Review to 3.1
We prefer using the esc_*() functions instead of htmlentities().
#2
@
14 years ago
- Milestone changed from 3.1 to Future Release
If you have something like ←
you could end up with &la
which looks strange. Alternate approach to trim unterminated entities from the end.
Punting to future.
#5
follow-up:
↓ 6
@
10 years ago
- Milestone Future Release deleted
- Resolution set to worksforme
- Status changed from new to closed
This seems to currently work just fine.
Simple patch to avoid non-well-formed XHTML