Finally the *correct* fix for the looping problem. Thanks to Penny (Merged from MOODLE_15_STABLE)

This commit is contained in:
patrickslee 2005-09-07 04:23:37 +00:00
parent 9d866ae0f1
commit dd875f1aa2
2 changed files with 6 additions and 4 deletions

View File

@ -6528,7 +6528,7 @@ function remove_dir($dir, $content_only=false) {
}
function report_session_error() {
global $CFG, $FULLME, $SESSOIN;
global $CFG, $FULLME;
if (empty($CFG->lang)) {
$CFG->lang = "en";
}
@ -6542,9 +6542,6 @@ function report_session_error() {
} else {
set_config('session_error_counter', 1);
}
unset($_SESSION['USER']);
unset($GLOBALS['USER']);
unset($SESSION->session_test);
redirect($FULLME, get_string('sessionerroruser', 'error'), 2);
}

View File

@ -314,6 +314,11 @@ $CFG->httpswwwroot = $CFG->wwwroot;
} else {
$_COOKIE['MoodleSessionTest'.$CFG->sessioncookie] = 'error!!';
}
} else {
if (empty($_COOKIE['MoodleSessionTest'.$CFG->sessioncookie])) {
setcookie('MoodleSessionTest'.$CFG->sessioncookie, $_SESSION['SESSION']->session_test, 0, '/');
$_COOKIE['MoodleSessionTest'.$CFG->sessioncookie] = $_SESSION['SESSION']->session_test;
}
}
if (! isset($_SESSION['USER'])) {
$_SESSION['USER'] = new object;