prevent_double_paid($course);
httpsrequired();
- if (empty($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == 'off') {
+ if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] != 443) { // MDL-9836
if (empty($CFG->loginhttps)) {
error(get_string('httpsrequired', 'enrol_authorize'));
} else {
notify(get_string('adminconfighttps', 'enrol_authorize', $a));
return; // notice breaks the form and xhtml later
}
- elseif (empty($_SERVER['HTTPS']) || $_SERVER['HTTPS'] == 'off') {
+ elseif (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] != 443) { // MDL-9836
$wwwsroot = qualified_me();
$wwwsroot = str_replace('http:', 'https:', $wwwsroot);
$a = new stdClass;