--- loncom/homework/inputtags.pm 2020/01/13 15:19:21 1.333.2.9.2.1 +++ loncom/homework/inputtags.pm 2021/09/11 16:48:57 1.333.2.9.2.3 @@ -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.9.2.3 2021/09/11 16:48:57 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1880,13 +1880,15 @@ sub previous_tries { my $prefix = $env{'form.request.prefix'}; $prefix =~ tr{.}{_}; my $function_name = 'LONCAPA_previous_tries_'.$prefix; - if (($env{'request.state'} eq 'construct') || ($id =~ /[._]|[^\w\s\-]/)) { + if (($env{'request.state'} eq 'construct') || ($id =~ /\W/)) { $function_name .= $Apache::lonxml::curdepth; } else { - $function_name .= &js_escape($id); + $function_name .= $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; }