--- loncom/homework/response.pm	2001/10/01 20:18:31	1.49
+++ loncom/homework/response.pm	2001/11/12 20:27:28	1.51
@@ -16,6 +16,11 @@ sub start_response {
   my ($parstack,$safeeval)=@_;
   my $id= &Apache::lonxml::get_param('id',$parstack,$safeeval);
   if ($id eq '') { $id = $Apache::lonxml::curdepth; }
+  if ($#Apache::inputtags::import > -1) {
+    &Apache::lonxml::debug("Turning :$id: into");
+    $id = join('_',@Apache::inputtags::import).'_'.$id;
+    &Apache::lonxml::debug("New  :$id:");
+  }
   push (@Apache::inputtags::response,$id);
   push (@Apache::inputtags::responselist,$id);
   @Apache::inputtags::inputlist=();
@@ -352,7 +357,7 @@ sub setup_params {
 sub answer_header {
   my ($type) = @_;
   my $result;
-  if ($type eq 'optionresponse') {
+  if ($type eq 'optionresponse' || $type eq 'radiobuttonresponse' ) {
     $result = '<table border="1"><tr><th>Answer for Part:'.
       $Apache::inputtags::part. '</th></tr><tr>'."\n";
   } else {
@@ -365,7 +370,7 @@ sub answer_header {
 sub answer_part {
   my ($type,$answer) = @_;
   my $result;
-  if ($type eq 'optionresponse') {
+  if ($type eq 'optionresponse' || $type eq 'radiobuttonresponse') {
     $result = '<td>'.$answer.'</td>';
   } else {
     $result = '<td>'.$answer.'</td>';
@@ -376,7 +381,7 @@ sub answer_part {
 sub answer_footer {
   my ($type) = @_;
   my $result;
-  if ($type eq 'optionresponse') {
+  if ($type eq 'optionresponse' || $type eq 'radiobuttonresponse') {
     $result = '</tr></table>';
   } else {
     $result = '</tr></table>';