--- loncom/auth/lonroles.pm 2009/06/11 19:02:27 1.226 +++ loncom/auth/lonroles.pm 2009/06/12 09:19:21 1.227 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # User Roles Screen # -# $Id: lonroles.pm,v 1.226 2009/06/11 19:02:27 raeburn Exp $ +# $Id: lonroles.pm,v 1.227 2009/06/12 09:19:21 bisitz Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1529,21 +1529,15 @@ sub adhoc_roles_row { my ($dcdom,$rowtype) = @_; my $output = &Apache::loncommon::continue_data_table_row() .' ' - .'' - .'' - .'' - .'' - .'
' .&mt('[_1]Ad hoc[_2] roles in domain [_3] --' ,'','',$dcdom) - .''; + .' '; my $selectcclink = &courselink($dcdom,$rowtype); my $ccrole = &Apache::lonnet::plaintext('cc'); my $carole = &Apache::lonnet::plaintext('ca'); my $selectcalink = &coauthorlink($dcdom,$rowtype); - $output.=&mt('[_1]: [_2]',$ccrole,$selectcclink) - .'
  '.&mt('[_1]: [_2]',$carole,$selectcalink).'
' - .'' + $output.=$ccrole.': '.$selectcclink + .' | '.$carole.': '.$selectcalink .&Apache::loncommon::end_data_table_row(); return $output; }