--- loncom/homework/inputtags.pm 2020/01/13 15:19:21 1.333.2.9.2.1 +++ loncom/homework/inputtags.pm 2021/09/11 16:09:56 1.333.2.10 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # input definitons # -# $Id: inputtags.pm,v 1.333.2.9.2.1 2020/01/13 15:19:21 raeburn Exp $ +# $Id: inputtags.pm,v 1.333.2.10 2021/09/11 16:09:56 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1329,8 +1329,7 @@ sub decideoutput { my $first_access=&Apache::lonnet::get_first_access($interval[1]); if (defined($first_access)) { my $due_date= &Apache::lonnet::EXT("resource.$part.duedate"); - my ($timelimit) = ($interval[0] =~ /^(\d+)/); - unless (($due_date) && ($due_date < $first_access + $timelimit)) { + unless (($due_date) && ($due_date < $first_access + $interval[0])) { $message = &mt("Answer Submitted: Your final submission will be graded when the time limit is reached."); } } @@ -1886,7 +1885,9 @@ sub previous_tries { $function_name .= &js_escape($id); } $function_name .= '_'.$Apache::lonxml::counter; - my $result = &Apache::loncommon::modal_adhoc_window($function_name,420,410,$output,&mt($tries_text))."
"; + my $possmathjax = 1; + my $result = &Apache::loncommon::modal_adhoc_window($function_name,420,410,$output, + &mt($tries_text),$possmathjax)."
"; return $result; }