--- loncom/homework/essayresponse.pm 2004/10/12 00:08:44 1.39
+++ loncom/homework/essayresponse.pm 2004/10/18 22:14:15 1.40
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# essay (ungraded) style responses
#
-# $Id: essayresponse.pm,v 1.39 2004/10/12 00:08:44 banghart Exp $
+# $Id: essayresponse.pm,v 1.40 2004/10/18 22:14:15 banghart Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -51,10 +51,10 @@ sub start_essayresponse {
my $uploadedfile= &HTML::Entities::encode($Apache::lonhomework::history{"resource.$part.$id.uploadedfile"},'<>&"');
$result='
'.
- 'Select Portfolio Files'.
' '. - ' '. + ' '. ' '. &mt('Submit entries below as answer to receive credit').' '. ' '. @@ -112,6 +112,7 @@ sub end_essayresponse { } elsif ( defined($ENV{'form.submitted'}) ) { my $response = $ENV{'form.HWVAL_'.$id}; my $filename= $ENV{'form.HWFILE'.$part.'_'.$id.'.filename'}; + my $portfiles = $ENV{'form.HWPORT'.$part.'_'.$id.'.filename'}; if (( $response =~ /[^\s]/) || ($filename =~ /[^\s]/)) { my $award; if ($ENV{'form.HWDRAFT'.$part.'_'.$id} eq 'yes') { |