--- loncom/homework/grades.pm 2007/10/26 00:41:31 1.468
+++ loncom/homework/grades.pm 2007/10/26 20:18:43 1.469
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# The LON-CAPA Grading handler
#
-# $Id: grades.pm,v 1.468 2007/10/26 00:41:31 albertel Exp $
+# $Id: grades.pm,v 1.469 2007/10/26 20:18:43 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -1852,12 +1852,6 @@ sub submission {
$request->print('
Submission Record
'."\n".
'
Resource: '.$env{'form.probTitle'}.'
'."\n");
- if ($env{'form.handgrade'} eq 'no') {
- my $checkMark='
Note: Part(s) graded correct by the computer is marked with a '.
- $checkIcon.' symbol.'."\n";
- $request->print($checkMark);
- }
-
# option to display problem, only once else it cause problems
# with the form later since the problem has a form.
if ($env{'form.vProb'} eq 'yes' or $env{'form.vAns'} eq 'yes') {
@@ -1989,6 +1983,13 @@ KEYWORDS
$result.= &mt('Submissions');
$result.=''."\n";
+ if ($env{'form.handgrade'} eq 'no') {
+ $result.=''.
+ &mt('Part(s) graded correct by the computer is marked with a [_1] symbol.',$checkIcon)."\n";
+
+ }
+
+
# If any part of the problem is an essay-response (handgraded), then check for collaborators
my $fullname;