--- loncom/interface/statistics/lonstudentsubmissions.pm 2010/08/04 01:56:07 1.60 +++ loncom/interface/statistics/lonstudentsubmissions.pm 2010/08/24 14:05:19 1.61 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: lonstudentsubmissions.pm,v 1.60 2010/08/04 01:56:07 raeburn Exp $ +# $Id: lonstudentsubmissions.pm,v 1.61 2010/08/24 14:05:19 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -177,11 +177,28 @@ sub BuildStudentSubmissionsPage { &array_shuffle(\@Students); } # + + my $threshold = $env{'course.'.$env{'request.course.id'}.'.internal.anonsurvey_threshold'}; + if ($threshold eq '') { + my %domconfig = + &Apache::lonnet::get_dom('configuration',['coursedefaults'], + $env{'course.'.$env{'request.course.id'}.'.domain'}); + if (ref($domconfig{'coursedefaults'}) eq 'HASH') { + $threshold = $domconfig{'coursedefaults'}{'anonsurvey_threshold'}; + if ($threshold eq '') { + $threshold = 10; + } + } else { + $threshold = 10; + } + } $r->print('
'. - &mt('Computing correct answers greatly increasese the amount of time required to prepare a report.'). + &mt('Computing correct answers greatly increases the amount of time required to prepare a report.'). '
'); $r->print(''. &mt('Please select problems and use the [_1]Prepare Report[_2] button to continue.','','').