mirror of
https://github.com/moodle/moodle.git
synced 2025-08-07 18:06:51 +02:00
Merge branch 'w43_MDL-29925_m22_calendar' of git://github.com/skodak/moodle
This commit is contained in:
commit
5a866c3634
1 changed files with 31 additions and 23 deletions
|
@ -2301,15 +2301,9 @@ function redirect($url, $message='', $delay=-1) {
|
|||
}
|
||||
} while (false);
|
||||
|
||||
if (!empty($message)) {
|
||||
if ($delay === -1 || !is_numeric($delay)) {
|
||||
$delay = 3;
|
||||
}
|
||||
$message = clean_text($message);
|
||||
} else {
|
||||
$message = get_string('pageshouldredirect');
|
||||
$delay = 0;
|
||||
// We are going to try to use a HTTP redirect, so we need a full URL.
|
||||
// Technically, HTTP/1.1 requires Location: header to contain the absolute path.
|
||||
// (In practice browsers accept relative paths - but still, might as well do it properly.)
|
||||
// This code turns relative into absolute.
|
||||
if (!preg_match('|^[a-z]+:|', $url)) {
|
||||
// Get host name http://www.wherever.com
|
||||
$hostpart = preg_replace('|^(.*?[^:/])/.*$|', '$1', $CFG->wwwroot);
|
||||
|
@ -2329,6 +2323,23 @@ function redirect($url, $message='', $delay=-1) {
|
|||
$url = $newurl;
|
||||
}
|
||||
}
|
||||
|
||||
// Sanitise url - we can not rely on moodle_url or our URL cleaning
|
||||
// because they do not support all valid external URLs
|
||||
$url = preg_replace('/[\x00-\x1F\x7F]/', '', $url);
|
||||
$url = str_replace('"', '%22', $url);
|
||||
$encodedurl = preg_replace("/\&(?![a-zA-Z0-9#]{1,8};)/", "&", $url);
|
||||
$encodedurl = preg_replace('/^.*href="([^"]*)".*$/', "\\1", clean_text('<a href="'.$encodedurl.'" />', FORMAT_HTML));
|
||||
$url = str_replace('&', '&', $encodedurl);
|
||||
|
||||
if (!empty($message)) {
|
||||
if ($delay === -1 || !is_numeric($delay)) {
|
||||
$delay = 3;
|
||||
}
|
||||
$message = clean_text($message);
|
||||
} else {
|
||||
$message = get_string('pageshouldredirect');
|
||||
$delay = 0;
|
||||
}
|
||||
|
||||
if (defined('MDL_PERF') || (!empty($CFG->perfdebug) and $CFG->perfdebug > 7)) {
|
||||
|
@ -2338,9 +2349,6 @@ function redirect($url, $message='', $delay=-1) {
|
|||
}
|
||||
}
|
||||
|
||||
$encodedurl = preg_replace("/\&(?![a-zA-Z0-9#]{1,8};)/", "&", $url);
|
||||
$encodedurl = preg_replace('/^.*href="([^"]*)".*$/', "\\1", clean_text('<a href="'.$encodedurl.'" />'));
|
||||
|
||||
if ($delay == 0 && !$debugdisableredirect && !headers_sent()) {
|
||||
// workaround for IIS bug http://support.microsoft.com/kb/q176113/
|
||||
if (session_id()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue