--- loncom/homework/bridgetask.pm 2005/09/29 19:15:47 1.54 +++ loncom/homework/bridgetask.pm 2005/09/29 19:18:37 1.55 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # definition of tags that give a structure to a document # -# $Id: bridgetask.pm,v 1.54 2005/09/29 19:15:47 albertel Exp $ +# $Id: bridgetask.pm,v 1.55 2005/09/29 19:18:37 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -568,18 +568,19 @@ sub end_Task { my $bt_status=$Apache::lonhomework::history{"resource.$version.status"}; my $title=&Apache::lonnet::gettitle(); my %slot=&Apache::lonnet::get_slot($Apache::inputtags::slot_name); - my $description=&Apache::slotrequest::get_description($Apache::inputtags::slot_name,\%slot); + my $start_time= + &Apache::lonlocal::locallocaltime($slot{'starttime'}); my $status; $status.="\n
\n"; if ($bt_status eq 'pass') { $status.='

You passed the '.$title.' given on '. - $description.'.

'; + $start_time.'.'; } if ($bt_status eq 'fail') { $status.='

You did not pass the '.$title.' given on '. - $description.'.

'; + $start_time.'.'; if (!$previous) { $status.=&add_request_another_attempt_button(); }