From: martinlanghoff Date: Mon, 17 Jan 2005 05:42:27 +0000 (+0000) Subject: Merged from MOODLE_14_STABLE - Added an early session_write_close() to loglive.php... X-Git-Url: http://git.mjollnir.org/gw?a=commitdiff_plain;h=d3e6cd798a7f7f4d040cd9b90d4804edf2a603b5;p=moodle.git Merged from MOODLE_14_STABLE - Added an early session_write_close() to loglive.php and log.php pages --- diff --git a/course/log.php b/course/log.php index b1ac09dbf9..3858e6b3f4 100644 --- a/course/log.php +++ b/course/log.php @@ -35,6 +35,7 @@ $strlogs = get_string('logs'); $stradministration = get_string('administration'); + session_write_close(); if (!empty($_GET['chooselog'])) { $userinfo = get_string('allparticipants'); diff --git a/course/loglive.php b/course/loglive.php index 1179872291..78674ee533 100644 --- a/course/loglive.php +++ b/course/loglive.php @@ -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);