--- loncom/homework/inputtags.pm 2019/03/18 20:21:14 1.333.2.5 +++ loncom/homework/inputtags.pm 2019/08/11 17:16:25 1.333.2.7 @@ -1,7 +1,7 @@ # The LearningOnline Network with CAPA # input definitons # -# $Id: inputtags.pm,v 1.333.2.5 2019/03/18 20:21:14 raeburn Exp $ +# $Id: inputtags.pm,v 1.333.2.7 2019/08/11 17:16:25 raeburn Exp $ # # Copyright Michigan State University Board of Trustees # @@ -666,10 +666,13 @@ sub file_selector { if ($constraints) { $result .= $constraints.'
'; } - if ($which eq 'uploadonly' || $which eq 'both') { - $result.=&mt('Submit a file: (only one file per submission)'). - '

'; + if ($which eq 'uploadonly' || $which eq 'both') { + my $free_space = $maxfilesize * 1048576; + $result .= &mt('Submit a file: (only one file per submission)'). + '
'. + '
'; } if ( $which eq 'both') { $result.='
'.''.&mt('OR:').'
'; @@ -691,7 +694,6 @@ sub file_selector { &mt('Select Portfolio Files: (one or more files per submission)').'
'. ''. '
'; - } $result.=&Apache::lonhtmlcommon::row_closure(1); return $result;