#31893 closed defect (bug) (fixed)
include '//' in emoji url.
| Reported by: | tmatsuur | Owned by: | pento |
|---|---|---|---|
| Priority: | normal | Milestone: | 4.2 |
| Component: | General | Version: | 4.2 |
| Severity: | normal | Keywords: | |
| Cc: | Focuses: | javascript |
Description
Posts containing the Emoji I was displayed in Chrome on Windows 8.1.
Emoji have been rewritten to img element, were included '' in the URL of the img element.
Example: beer
http://s.w.org/images/core/emoji/72x72//1f37a.png
I think that the 72x72// is good in 72x72/.
head element[page source]:
window._wpemojiSettings = {"baseUrl":"http:\/\/s.w.org\/images\/core\/emoji\/72x72\/","ext":".png", ...
twemoji.parse[wp-emoji.js]: line130
return ''.concat( options.base, '/', icon, options.ext );
I think that it should do fixed in such a feeling.
return ''.concat( options.base, icon, options.ext );
Change History (3)
Note:
See TracTickets
for help on using tickets.
![(please configure the [header_logo] section in trac.ini)](/chrome/site/your_project_logo.png)
In 32024: