#47330 closed defect (bug) (wontfix)
wp-login.php login_header Title tag missing
Reported by: |
|
Owned by: | |
---|---|---|---|
Milestone: | Priority: | normal | |
Severity: | normal | Version: | 5.2 |
Component: | Login and Registration | Keywords: | has-patch needs-testing |
Focuses: | accessibility | Cc: |
Description
do_action( 'login_header' ); ?> <div id="login"> <h1><a href="<?php echo esc_url($login_header_url); ?>"><?php echo $login_header_text; ?></a></h1>
Change Code With
do_action( 'login_header' ); ?> <div id="login"> <h1><a href="<?php echo esc_url($login_header_url); ?>" title="<?php echo $login_header_text; ?>"><?php echo $login_header_text; ?></a></h1>
Attachments (2)
Change History (8)
#2
@
6 years ago
@davidbaumwald I have updated code with patch please proceed for this, Please guide me if need any process for this. I have updated with esc_attr()
#3
@
6 years ago
- Keywords needs-refresh removed
Looks like this was discussed and removed in #42537.
#4
@
6 years ago
- Milestone Awaiting Review deleted
- Resolution set to wontfix
- Status changed from new to closed
#5
follow-up:
↓ 6
@
5 years ago
[42537] @SergeyBiryukov ok, I have reviewed these changes. But as per HTML rules, a tag required a title tag.
#6
in reply to:
↑ 5
@
5 years ago
Replying to ravipatel:
But as per HTML rules, a tag required a title tag.
HTML indeed requires the title tag, but it's not the same as the title attribute (see also the Accessibility concerns section for the latter).
Note: See
TracTickets for help on using
tickets.
@ravipatel Great job so far. I think the title should incorporate
esc_attr
as well.