--- loncom/homework/structuretags.pm 2013/09/05 12:07:29 1.515 +++ loncom/homework/structuretags.pm 2013/12/04 15:57:12 1.516 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # definition of tags that give a structure to a document # -# $Id: structuretags.pm,v 1.515 2013/09/05 12:07:29 goltermann Exp $ +# $Id: structuretags.pm,v 1.516 2013/12/04 15:57:12 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -2057,9 +2057,15 @@ sub end_while { } $return = &Apache::run::run($code,$safeeval); } - if ($error) { - &Apache::lonxml::error('
'.&mt('Code ran too long. It ran for more than').' '.$Apache::lonnet::perlvar{'lonScriptTimeout'}.' '.&mt('seconds occurred while running <while> on line').' '.$line.'
'); - } + if ($error) { + &Apache::lonxml::error( + '
'
+               .&mt('Code ran too long. It ran for more than [_1] seconds.',
+                        $Apache::lonnet::perlvar{'lonScriptTimeout'})
+               .&mt('This occurred while running <while> on line [_1].',
+                        $line)
+               .'
'); + } } elsif ($target eq "edit") { $result.= &Apache::edit::tag_end($target,$token,''); }