--- loncom/interface/statistics/lonstudentassessment.pm	2003/06/16 15:54:58	1.59
+++ loncom/interface/statistics/lonstudentassessment.pm	2003/06/17 17:47:54	1.60
@@ -1,6 +1,6 @@
 # The LearningOnline Network with CAPA
 #
-# $Id: lonstudentassessment.pm,v 1.59 2003/06/16 15:54:58 matthew Exp $
+# $Id: lonstudentassessment.pm,v 1.60 2003/06/17 17:47:54 matthew Exp $
 #
 # Copyright Michigan State University Board of Trustees
 #
@@ -335,7 +335,7 @@ sub CreateInterface {
                                   'value="Select One Student" />';
     $Str .= ' 'x5;
     $Str .= '<input type="submit" name="ClearCache" value="Clear Caches" />';
-    $Str .= '&nbsp;'x5;
+    $Str .= '&nbsp;'x5.'<br />';
     return $Str;
 }
 
@@ -1516,6 +1516,11 @@ sub StudentPerformanceOnSequence {
                 }
             }
             #
+            if (! defined($partscore)) {
+                $partscore = $symbol;
+            }
+            push (@ScoreData,$partscore);
+            #
             if ( ($links eq 'yes' && $symbol ne ' ') || ($links eq 'all')) {
                 $symbol = '<a href="/adm/grades'.
                     '?symb='.&Apache::lonnet::escape($resource->{'symb'}).
@@ -1523,12 +1528,8 @@ sub StudentPerformanceOnSequence {
                     '&domain='.$student->{'domain'}.
                     '&command=submission">'.$symbol.'</a>';
             }
-            if (! defined($partscore)) {
-                $partscore = $symbol;
-            }
-            push (@ScoreData,$partscore);
+            $Str .= $symbol;
         }
-        $Str .= $symbol;
     }
     return ($Str,$performance_length,$score,$max,\@ScoreData);
 }