--- loncom/homework/inputtags.pm 2005/03/31 21:30:54 1.161 +++ loncom/homework/inputtags.pm 2005/03/31 21:34:34 1.163 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # input definitons # -# $Id: inputtags.pm,v 1.161 2005/03/31 21:30:54 albertel Exp $ +# $Id: inputtags.pm,v 1.163 2005/03/31 21:34:34 albertel Exp $ # # Copyright Michigan State University Board of Trustees # @@ -306,8 +306,11 @@ sub file_selector { if (!$uploadedfiletypes) { return ''; } my $result; - $result.=''. - &mt('Allowed filetypes: [_1]',$uploadedfiletypes).'
'; + $result.=''; + if ($uploadedfiletypes ne '*') { + $result.= + &mt('Allowed filetypes: [_1]',$uploadedfiletypes).'
'; + } if ($which eq 'uploadonly' || $which eq 'both') { $result.=&mt('Submit a file: (only one file can be uploaded)'). '
The last submission was after the Due Date"; + $latemessage=&mt(' The last submission was after the Due Date ');; + if ($target eq 'web') { + $latemessage=''.$latemessage.''; } } }