--- rat/lonpage.pm 2019/07/28 14:10:33 1.111.2.7 +++ rat/lonpage.pm 2019/08/12 15:36:40 1.111.2.8 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Page Handler # -# $Id: lonpage.pm,v 1.111.2.7 2019/07/28 14:10:33 raeburn Exp $ +# $Id: lonpage.pm,v 1.111.2.8 2019/08/12 15:36:40 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -298,23 +298,26 @@ ENDEXT $posthash{'rndseed'}=$env{'form.rndseed'}; $posthash{'answer_output_mode'} = $env{'form.answer_output_mode'}; } - my $submitted=exists($env{'form.all_submit'}); + my $submitted=$env{'form.all_submit_pressed'}; if (!$submitted) { foreach my $key (keys(%env)) { - if ($key=~/^form.\Q$prefix\Esubmit_/) { - $submitted=1;last; + if ($key=~/^\Qform.$prefix\Esubmit_(.+)_pressed$/) { + if ($env{$key}) { + $submitted=1; + last; + } } - } + } } if ($submitted) { foreach my $key (keys(%env)) { - if ($key=~/^form.\Q$prefix\E/) { + if ($key=~/^\Qform.$prefix\E/) { my $name=$key; - $name=~s/^form.\Q$prefix\E//; + $name=~s/^\Qform.$prefix\E//; $posthash{$name}=$env{$key}; - } + } } - if (exists($env{'form.all_submit'})) { + if ($env{'form.all_submit_pressed'}) { $posthash{'all_submit'}='yes'; } } @@ -428,8 +431,6 @@ ENDEXT $output=~ s/(\Q)/$1$idprefix$2$3$4/g; if ($nuploads) { - $output=~ - s/\<(input[^\>]+name=\"\Q$prefix\EHWFILE[^\>]+)\s*id\s*\=\s*[\'\"]*([^\'\"]+)[\'\"]*([^\)]*)\>/\<$1 id="$prefix$2" $3\>/gsi; ($turninpaths{$prefix},$multiresps{$prefix}) = &Apache::loncommon::get_turnedin_filepath($symb,$env{'user.name'},$env{'user.domain'}); if ($turninparent eq '') { @@ -542,7 +543,9 @@ ENDEXT "\n\n"; } if (($nforms) && ($nuploads)) { - $allscript .= &Apache::lonhtmlcommon::file_submissionchk_js(\%turninpaths,\%multiresps); + $allscript .= &Apache::lonhtmlcommon::file_submissionchk_js(\%turninpaths,\%multiresps). + ''; } if (($nforms) && (&Apache::lonhtmlcommon::htmlareabrowser())) { my %textarea_args = ( @@ -743,6 +746,8 @@ ENDEXT $r->print( ''. + ''. ''); }