Merged from MOODLE_14_STABLE - Added an early session_write_close() to loglive.php and log.php pages

This commit is contained in:
martinlanghoff 2005-01-17 05:42:27 +00:00
parent 4742b339ff
commit d3e6cd798a
2 changed files with 3 additions and 0 deletions

View File

@ -35,6 +35,7 @@
$strlogs = get_string('logs');
$stradministration = get_string('administration');
session_write_close();
if (!empty($_GET['chooselog'])) {
$userinfo = get_string('allparticipants');

View File

@ -16,6 +16,8 @@
error("Only teachers can view logs");
}
session_write_close();
$strlivelogs = get_string("livelogs");
$strupdatesevery = get_string("updatesevery", "moodle", COURSE_LIVELOG_REFRESH);