mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
FIX: Ignore charset when checking mime types in LeftAndMain ajax responses.
This is partly a fix to #7574, although quite different from the work Ingo did on Content-length. The text/json mime type occasionally gets a charset suffixed to it by the webserver, which broke everything. A follow-on fix from this would be to get the PHP code to supply charsets more consistently, so that webservers don't have to make things up. Additionally, the 2nd interpretation - which treats the response as text/html - should probably only happen if the response is text/html, and throw a more helpful error otherwise.
This commit is contained in:
parent
1a1740e563
commit
28bd939580
@ -379,7 +379,8 @@ jQuery.noConflict();
|
||||
if(title) document.title = title;
|
||||
|
||||
var newFragments = {}, newContentEls;
|
||||
if(xhr.getResponseHeader('Content-Type') == 'text/json') {
|
||||
// If content type is text/json (ignoring charset and other parameters)
|
||||
if(xhr.getResponseHeader('Content-Type').match(/^text\/json[ \t]*;?/i)) {
|
||||
newFragments = data;
|
||||
} else {
|
||||
// Fall back to replacing the content fragment if HTML is returned
|
||||
|
Loading…
Reference in New Issue
Block a user