From 724b29ba32b10cedfde08050ee9dae629ed0210a Mon Sep 17 00:00:00 2001
From: Tim Steiner <tsteiner2@unl.edu>
Date: Fri, 12 Dec 2008 19:14:14 +0000
Subject: [PATCH] Chagnes to iACE reports.

---
 .../iace/views/scripts/reports/through-date.phtml        | 9 +++++----
 .../modules/iace/views/scripts/reports/weekly.phtml      | 9 +++++----
 2 files changed, 10 insertions(+), 8 deletions(-)

diff --git a/application/modules/iace/views/scripts/reports/through-date.phtml b/application/modules/iace/views/scripts/reports/through-date.phtml
index 35a87cdc..74896450 100644
--- a/application/modules/iace/views/scripts/reports/through-date.phtml
+++ b/application/modules/iace/views/scripts/reports/through-date.phtml
@@ -11,24 +11,25 @@
 <table>
     <tr>
         <th><a href="<?php echo $this->url(array('sort' => 'slo')); ?>">SLO</a></th>
-        <th><a href="<?php echo $this->url(array('sort' => 'course')); ?>">Course</a></th>
         <th><a href="<?php echo $this->url(array('sort' => 'college')); ?>">College</a></th>
+        <th><a href="<?php echo $this->url(array('sort' => 'course')); ?>">Course</a></th>
         <th><a href="<?php echo $this->url(array('sort' => 'title')); ?>">Title</a></th>
     </tr>
     <?php foreach ($this->data as $record) { ?>
     <tr <?php if ($rowCount++ % 2) { ?>class="even"<?php } ?>>
         <td>
             <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
-                <?php echo $record->getSlo(); ?></td>
+                <?php echo $record->getSlo(); ?>
             </a>
+        </td>
         <td>
             <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
-                <?php echo $record->getCourseCode(); ?>
+                <?php echo $record->getCollege(); ?>
             </a>
         </td>
         <td>
             <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
-                <?php echo $record->getCollege(); ?>
+                <?php echo $record->getCourseCode(); ?>
             </a>
         </td>
         <td>
diff --git a/application/modules/iace/views/scripts/reports/weekly.phtml b/application/modules/iace/views/scripts/reports/weekly.phtml
index 92d14b0f..e0315686 100644
--- a/application/modules/iace/views/scripts/reports/weekly.phtml
+++ b/application/modules/iace/views/scripts/reports/weekly.phtml
@@ -11,8 +11,8 @@
 <table>
 	<tr>
         <th><a href="<?php echo $this->url(array('sort' => 'slo')); ?>">SLO</a></th>
-        <th><a href="<?php echo $this->url(array('sort' => 'course')); ?>">Course</a></th>
         <th><a href="<?php echo $this->url(array('sort' => 'college')); ?>">College</a></th>
+        <th><a href="<?php echo $this->url(array('sort' => 'course')); ?>">Course</a></th>
         <th><a href="<?php echo $this->url(array('sort' => 'title')); ?>">Title</a></th>
         <th><a href="<?php echo $this->url(array('sort' => 'finalizeTime')); ?>">Certified</a></th>
 	</tr>
@@ -20,16 +20,17 @@
     <tr <?php if ($rowCount++ % 2) { ?>class="even"<?php } ?>>
         <td>
             <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
-                <?php echo $record->getSlo(); ?></td>
+                <?php echo $record->getSlo(); ?>
             </a>
+        </td>
         <td>
             <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
-                <?php echo $record->getCourseCode(); ?>
+                <?php echo $record->getCollege(); ?>
             </a>
         </td>
         <td>
             <a href="<?php echo $this->baseUrl(); ?>/courses/view/print/id/<?php echo $record->getRequestId(); ?>">
-                <?php echo $record->getCollege(); ?>
+                <?php echo $record->getCourseCode(); ?>
             </a>
         </td>
         <td>
-- 
GitLab