--- loncom/interface/statistics/lonproblemanalysis.pm 2004/06/04 21:42:18 1.85 +++ loncom/interface/statistics/lonproblemanalysis.pm 2004/06/24 18:47:36 1.87 @@ -1,6 +1,6 @@ # The LearningOnline Network with CAPA # -# $Id: lonproblemanalysis.pm,v 1.85 2004/06/04 21:42:18 matthew Exp $ +# $Id: lonproblemanalysis.pm,v 1.87 2004/06/24 18:47:36 matthew Exp $ # # Copyright Michigan State University Board of Trustees # @@ -77,7 +77,7 @@ sub BuildProblemAnalysisPage { # my @Students = @Apache::lonstatistics::Students; # - if (@Students < 1) { + if (@Students < 1 && exists($ENV{'form.firstrun'})) { $r->print('

There are no students in the sections selected

'); } # @@ -85,7 +85,10 @@ sub BuildProblemAnalysisPage { &Apache::lonstathelpers::manage_caches($r,'Statistics','stats_status'); $r->rflush(); # - my $problem_types = '(option|radiobutton|numerical)'; + # Support for numerical and radio response isn't complete enough to + # include in 1.2 release. + # my $problem_types = '(option|radiobutton|numerical)'; + my $problem_types = '(option)'; if (exists($ENV{'form.problemchoice'}) && ! exists($ENV{'form.SelectAnother'})) { foreach my $button (@SubmitButtons) {