Opened 12 years ago
Closed 12 years ago
#23435 closed defect (bug) (fixed)
Bundled Themes: use .text() instead .html() for blogname and blogdescription in the Customizer.
Reported by: | mfields | Owned by: | lancewillett |
---|---|---|---|
Milestone: | 3.6 | Priority: | normal |
Severity: | normal | Version: | |
Component: | Bundled Theme | Keywords: | has-patch |
Focuses: | Cc: |
Description
Twenty Eleven and Twenty Twelve use the jQuery method .html()
in the
wp.customize()
callback for both
blogname
and
blogdescription
. Both of these fields are filtered through
esc_html()
berfore they are saved to the database. Use of
.html()
in the Customizer may lead to user confusion when HTML is entered in one of these fields. The HTML will work in the preview but will be rendered as entities after save. Using
.text()
instead of
.html()
will show an accurate preview their site for
blogname
and
blogdescription
.
Attachments (1)
Change History (4)
Note: See
TracTickets for help on using
tickets.
In 23429: