version 1.8, 2002/08/14 20:42:49
|
version 1.9, 2002/08/14 21:51:51
|
Line 115 sub BuildAnalyzePage {
|
Line 115 sub BuildAnalyzePage {
|
splice(@$students, $studentIndex, 1); |
splice(@$students, $studentIndex, 1); |
} |
} |
} |
} |
untie(%cache); |
unless(untie(%cache)) { |
|
$r->print('Can not untie hash.'); |
|
$r->rflush(); |
|
} |
|
|
if(&Apache::loncoursedata::DownloadStudentCourseDataSeparate($students, |
my $error = |
'true', |
&Apache::loncoursedata::DownloadStudentCourseDataSeparate($students, |
$cacheDB, |
'true', |
'true', |
$cacheDB, |
'true', |
'true', |
$courseID, |
'true', |
$r, |
$courseID, |
$c) ne 'OK') { |
$r, $c); |
$r->print($Str); |
if($error ne 'OK') { |
|
$r->print($error.'<br>Error downloading course data<br>'); |
return; |
return; |
} |
} |
|
|