--- loncom/interface/loncourserespicker.pm 2012/03/31 12:02:21 1.1 +++ loncom/interface/loncourserespicker.pm 2012/05/07 02:12:47 1.2 @@ -1,6 +1,6 @@ # The LearningOnline Network # -# $Id: loncourserespicker.pm,v 1.1 2012/03/31 12:02:21 raeburn Exp $ +# $Id: loncourserespicker.pm,v 1.2 2012/05/07 02:12:47 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -148,6 +148,7 @@ use Apache::lonnet; use Apache::loncommon; use Apache::lonhtmlcommon; use Apache::lonnavmaps; +use Apache::londocs; use Apache::lonlocal; use LONCAPA qw(:DEFAULT :match); @@ -218,8 +219,9 @@ sub create_picker { ' onclick="javascript:checkAll(document.'.$formname.'.discussion)" />'. '  '. - ''; + ''; } + $display .= ''; } my $curRes; my $lastcontainer = $startcount; @@ -358,11 +360,14 @@ sub create_picker { } my $output = &Apache::loncommon::start_page($title,$scripttag,$args); if ($context eq 'imsexport') { - $output .= &Apache::lonhtmlcommon::breadcrumbs('IMS Export'); + $output .= &Apache::lonhtmlcommon::breadcrumbs('IMS Export'). + &Apache::londocs::startContentScreen('tools'); } $output .= $display; if ($context eq 'examblock') { $output .= &Apache::loncommon::end_page(); + } elsif ($context eq 'imsexport') { + $output .= &Apache::londocs::endContentScreen(); } return $output; }