--- cms/mod/assignment/lib.php	2008-06-05 05:55:04.212960411 -0700
+++ cms-dev/mod/assignment/lib.php	2008-06-12 17:51:37.760864131 -0700
@@ -227,7 +227,15 @@
         }
 
         if ($grade->grade === null and empty($grade->str_feedback)) {   /// Nothing to show yet
-            return;
+
+            // Return only if no comment to display.
+            if (empty($submission->submissioncomment)) {
+                return;
+            }
+
+            $grade->str_feedback = $submission->submissioncomment;
+            $grade->usermodified = $submission->teacher;
+            $grade->dategraded = $submission->timemodified;
         }
 
         $graded_date = $grade->dategraded;

