From a25dae6548e43638ab4864629884dcb8b5c9858d Mon Sep 17 00:00:00 2001 From: Roger Feese <rfeese@unl.edu> Date: Wed, 4 Mar 2015 11:03:42 -0600 Subject: [PATCH] Corrected table header and columns to match bulletin request type. --- .../bulletin/views/scripts/queue-manager/request-table.phtml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 676eeb63..9d826d9c 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()]; ?> -- GitLab