diff --git a/application/modules/bulletin/views/scripts/queue-manager/request-table.phtml b/application/modules/bulletin/views/scripts/queue-manager/request-table.phtml
index 676eeb630e487a3271aae8794262eeeab1d1f43d..9d826d9cf50010a802de1866a524481d6da151b3 100644
--- a/application/modules/bulletin/views/scripts/queue-manager/request-table.phtml
+++ b/application/modules/bulletin/views/scripts/queue-manager/request-table.phtml
@@ -27,7 +27,7 @@ $this->headLink()->appendStylesheet($this->baseUrl() . '/css/bulletin/queue-mana
     	<?php if ($isCurrentPeriod) { ?>
     	<th>Advance</th>
     	<?php } ?>
-        <th>Major</th>
+        <th>Section</th>
         <th>College</th>
         <?php foreach ($this->users as $user) { ?>
         <th><?php echo $user->getFirstName() . ' ' . $user->getLastName(); ?></th>
@@ -41,7 +41,7 @@ $this->headLink()->appendStylesheet($this->baseUrl() . '/css/bulletin/queue-mana
     	<?php if ($isCurrentPeriod) { ?>
     	<td><?php echo $this->formCheckbox('requests[' . $request->getId() . ']'); ?>
     	<?php } ?>
-        <td><?php echo $bulletin->getMajor(); ?></td>
+        <td><?php echo $this->escape($bulletin->getMajor() ? $bulletin->getMajor() : $bulletin->getCollegeLong()); ?></td>
         <td><?php echo $bulletin->getCollege(); ?></td>
         <?php foreach ($this->users as $user) { 
             $vote = $userVotes[$user->getId()]; ?>