-
Bug
-
Resolution: Fixed
-
Major
-
2.5, 2.6
-
MOODLE_25_STABLE, MOODLE_26_STABLE
-
MOODLE_25_STABLE
-
m26_
MDL-39810_IE_Compatibility_View_Does_Not_Recognize_JSON_RFC4627_MIME_Type -
Users are encountering problems when they use IE and try to upload any file through the file resource.
When they try and upload the file, they are asked if they wise to open or save "repository_ajax.php" file
The fix is to add the "@header('Content-type: text/html; charset=utf-8');" code snippet after line 59 (echo $OUTPUT->header(); // send headers)
So it should be:
.....
echo $OUTPUT->header(); // send headers
// add this code snippet
@header('Content-type: text/html; charset=utf-8');
// end add
.....
This was missed in 2.5 and it was included in earlier 2.x versions
- Discovered while testing
-
MDL-40200 PHP Notice when viewing the profile of a not existing user
-
- Closed
-
- has a non-specific relationship to
-
MDL-24781 repository_ajax.php tries to download to the browser
-
- Closed
-
-
MDL-42589 File picker is blank in IE9+
-
- Closed
-
-
MDL-42491 IE11 reports its useragent differently and breaks browser sniffing
-
- Closed
-
-
MDL-33680 Ajax calls with incorrect mime types
-
- Closed
-
- is blocked by
-
MDL-42491 IE11 reports its useragent differently and breaks browser sniffing
-
- Closed
-