--- loncom/homework/inputtags.pm 2001/01/05 01:14:49 1.21 +++ loncom/homework/inputtags.pm 2001/01/06 16:35:36 1.22 @@ -255,7 +255,7 @@ sub gradestatus { my $status = $Apache::inputtags::status['-1']; &Apache::lonxml::debug("gradestatus has :$status:"); - if ( $status eq 'CAN_ANSWER' || $status eq 'SHOW_ANSWER' ) { + if ( $status ne 'CLOSED' ) { my $award = $Apache::lonhomework::history{"resource.$id.award"}; &Apache::lonxml::debug("Found Award |$award|"); if ( $award ne '' ) { @@ -270,8 +270,7 @@ sub gradestatus { if ( $showbutton ) { $trystr = "

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



'; }