#26608 closed defect (bug) (fixed)
/wp-admin/includes/post.php: Make HTML tag standard compliant
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | 4.2 | Priority: | lowest |
Severity: | trivial | Version: | 3.6 |
Component: | Posts, Post Types | Keywords: | has-patch 3.9-early |
Focuses: | administration | Cc: |
Description
<br> tag isn't closed.
Attachments (1)
Change History (10)
#2
@
11 years ago
- Keywords 3.9-early added
- Milestone changed from Awaiting Review to Future Release
- Priority changed from normal to lowest
- Severity changed from minor to trivial
- Version changed from trunk to 3.6
#3
@
11 years ago
What do you mean by "HTML tag standard compliant"?
Since we doesn't have a XML document here I'm fine with just <br>
. There is really no need to "fix" such things.
See also http://www.w3.org/TR/html5/text-level-semantics.html#the-br-element.
#4
@
11 years ago
You're right, I thought HTML5 would require properly closing all tags. Nevertheless there are the "WordPress Coding standards": Self-closing Elements (http://make.wordpress.org/core/handbook/coding-standards/html/#self-closing-elements). Secondly it's the only br tag in the whole code base that's not self closed. So at least it should be fixed for consistency.
#5
follow-up:
↓ 6
@
11 years ago
Secondly it's the only br tag in the whole code base that's not self closed.
There are two more in JS files:
#6
in reply to:
↑ 5
@
11 years ago
Replying to ocean90:
There are two more in JS files:
Does that mean you would support the ticket if those were changed, too?
Related: [24042]