--- loncom/interface/slotrequest.pm 2009/10/31 05:39:25 1.105 +++ loncom/interface/slotrequest.pm 2009/11/04 15:37:23 1.106 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # Handler for requesting to have slots added to a students record # -# $Id: slotrequest.pm,v 1.105 2009/10/31 05:39:25 raeburn Exp $ +# $Id: slotrequest.pm,v 1.106 2009/11/04 15:37:23 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -1050,7 +1050,11 @@ sub show_table { } if (!keys(%slots)) { - $r->print('
'.&mt('No slots have been created in this course.').'
'); + if ($crstype eq 'Community') { + $r->print('
'.&mt('No slots have been created in this community.').'
'); + } else { + $r->print('
'.&mt('No slots have been created in this course.').'
'); + } return; }