temporary workaround for bug #5534, html editor now disabled for IE when loginhttps on and wwwroot starts with http://
This commit is contained in:
@@ -277,6 +277,12 @@
|
||||
|
||||
$usehtmleditor = can_use_html_editor();
|
||||
|
||||
//temporary hack to disable htmleditor in IE when loginhttps on and wwwroot starts with http://
|
||||
//see bug #5534
|
||||
if (!empty($CFG->loginhttps) and check_browser_version('MSIE', 5.5) and (strpos($CFG->wwwroot, 'http://') === 0)) {
|
||||
$usehtmleditor = false;
|
||||
}
|
||||
|
||||
$streditmyprofile = get_string("editmyprofile");
|
||||
$strparticipants = get_string("participants");
|
||||
$strnewuser = get_string("newuser");
|
||||
|
||||
Reference in New Issue
Block a user