--- loncom/homework/grades.pm 2002/11/27 15:54:24 1.61
+++ loncom/homework/grades.pm 2002/12/02 17:28:51 1.63
@@ -1,7 +1,7 @@
# The LearningOnline Network with CAPA
# The LON-CAPA Grading handler
#
-# $Id: grades.pm,v 1.61 2002/11/27 15:54:24 albertel Exp $
+# $Id: grades.pm,v 1.63 2002/12/02 17:28:51 albertel Exp $
#
# Copyright Michigan State University Board of Trustees
#
@@ -352,8 +352,8 @@ LISTJAVASCRIPT
''."\n".
''."\n".
''."\n".
- '
'."\n".
- '
'."\n".
+ '
'."\n".
+ '
'."\n".
''."\n".
''."\n".
'To '.lc($viewgrade).' a submission, click on the check box next to the student\'s name. Then '."\n".
@@ -672,21 +672,21 @@ sub sub_page_js {
pWin.document.write("
");
pWin.document.write("Subject | ");
pWin.document.write(" | ");
- pWin.document.write(" |
");
+ pWin.document.write(" | ");
}
function displaySavedMsg(ctr,msg,shwsel) {
pWin.document.write("");
pWin.document.write(""+ctr+" | ");
pWin.document.write(" | ");
- pWin.document.write(" |
");
+ pWin.document.write(" | ");
}
function newMsg(newmsg,shwsel) {
pWin.document.write("");
pWin.document.write("New | ");
pWin.document.write(" | ");
- pWin.document.write(" |
");
+ pWin.document.write(" | ");
}
function msgTail() {
@@ -1226,7 +1226,7 @@ sub processHandGrade {
my $includemsg = $ENV{'form.includemsg'.$ctr};
my ($subject,$message,$msgstatus) = ('','','');
- if ($includemsg =~ /savemsg|new$ctr/) {
+ if ($includemsg =~ /savemsg|newmsg\Q$ctr\E/) {
$subject = $ENV{'form.msgsub'} if ($includemsg =~ /^msgsub/);
my (@msgnum) = split(/,/,$includemsg);
foreach (@msgnum) {
@@ -1725,8 +1725,8 @@ sub viewstudentgrade {
''.$fullname.''.
''.$uname.' | '.$udom.' | '."\n";
- foreach my $part (@$parts) {
- my ($part,$type) = &split_part_type($part);
+ foreach my $apart (@$parts) {
+ my ($part,$type) = &split_part_type($apart);
my $score=$record{"resource.$part.$type"};
if ($type eq 'awarded') {
my $pts = $score eq '' ? '' : $score*$$weight{$part};