--- loncom/homework/inputtags.pm 2001/01/15 21:44:21 1.25 +++ loncom/homework/inputtags.pm 2001/02/19 20:34:20 1.27 @@ -261,6 +261,7 @@ sub gradestatus { if ( $award ne '' ) { &Apache::lonxml::debug('Getting message'); ($showbutton,$message) = &decideoutput($award); + $message="
$message
"; } my $tries = $Apache::lonhomework::history{"resource.$id.tries"}; my $maxtries = &Apache::lonnet::EXT("resource.$id.maxtries"); @@ -269,11 +270,11 @@ sub gradestatus { if ( $maxtries eq '' ) { $maxtries = '2'; } if ( $maxtries eq 'con_lost' ) { $maxtries = '0'; } if ( $showbutton ) { - $trystr = "

Tries $tries/$maxtries"; + $trystr = "
Tries $tries/$maxtries"; } if ( $status eq 'SHOW_ANSWER' || $status eq 'CANNOT_ANSWER') {$showbutton = 0;} if ( $showbutton ) { - $button = '



'; + $button = '
'; } } return $button.$message.$trystr;