Modify ↓
Ticket #4855 (closed bug: fixed)
Wrong script encoding in IE6/7
| Reported by: | twirl | Owned by: | dmethvin |
|---|---|---|---|
| Priority: | minor | Milestone: | 1.4.3 |
| Component: | ajax | Version: | 1.4.2 |
| Keywords: | Cc: | ||
| Blocking: | Blocked by: |
Description
Ajax.js, line 255
script.src = s.url; if (s.scriptCharset)
script.charset = s.scriptCharset;
If script is already in cache, IE6/7 takes it immediately when src is set. If there is no charset given, IE assumes that script encoding is system. Src should be set AFTER charset.
Change History
Please follow the bug reporting guidlines and use jsFiddle when providing test cases and demonstrations instead of pasting the code in the ticket.
Note: See
TracTickets for help on using
tickets.

Patch seems good.