#30212 closed defect (bug) (fixed)
Twenty Fifteen: Proper Escaping Missing From HTML5 Shiv Header Call
Reported by: |
|
Owned by: |
|
---|---|---|---|
Milestone: | 4.1 | Priority: | normal |
Severity: | normal | Version: | 4.1 |
Component: | Bundled Theme | Keywords: | has-patch commit |
Focuses: | Cc: |
Description
This:
<!--[if lt IE 9]> <script src="<?php echo get_template_directory_uri(); ?>/js/html5.js"></script> <![endif]-->
Should be this:
<!--[if lt IE 9]> <script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/html5.js"></script> <![endif]-->
Attachments (1)
Change History (6)
This ticket was mentioned in Slack in #themereview by wensolutions. View the logs.
8 years ago
This ticket was mentioned in Slack in #themereview by emiluzelac. View the logs.
6 years ago
Note: See
TracTickets for help on using
tickets.
In 30218: