From 4382f41bc3edecadea76c3e973fd14ed0dded5f5 Mon Sep 17 00:00:00 2001
From: Tim Steiner <tsteiner2@unl.edu>
Date: Mon, 11 Dec 2006 18:45:28 +0000
Subject: [PATCH] Fix to display course letter on Home Page lists

---
 application/views/my_home.xhtml | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/application/views/my_home.xhtml b/application/views/my_home.xhtml
index 1631d1d8..3a44513e 100644
--- a/application/views/my_home.xhtml
+++ b/application/views/my_home.xhtml
@@ -42,7 +42,8 @@
             <tr <?php echo (++$row % 2 ? 'class="odd"' : ''); ?>>
                 <td><input type="checkbox" /></td>
                 <td><?php echo $request->getCourseGeneration()->subject . ' '
-                             . $request->getCourseGeneration()->courseNumber; ?></td>
+                             . $request->getCourseGeneration()->courseNumber
+                             . $request->getCourseGeneration()->courseLetter; ?></td>
                 <td>NONC</td>
                 <td><?php echo $request->type; ?></td>
                 <td><select><option>Submission</option></select></td>
@@ -87,7 +88,8 @@
             <tr <?php echo (++$row % 2 ? 'class="odd"' : ''); ?>>
                 <td><input type="checkbox" /></td>
                 <td><?php echo $request->getCourseGeneration()->subject . ' '
-                             . $request->getCourseGeneration()->courseNumber; ?></td>
+                             . $request->getCourseGeneration()->courseNumber
+                             . $request->getCourseGeneration()->courseLetter; ?></td>
                 <td>NONC</td>
                 <td><?php echo $request->type; ?></td>
                 <td><select><option>Submission</option></select></td>
-- 
GitLab