Skip to content
Snippets Groups Projects
Commit 483026a7 authored by Tim Steiner's avatar Tim Steiner
Browse files

Web only courses did not have their course number displayed in the bulletin preview. They do now.

parent 62e23c98
No related branches found
No related tags found
No related merge requests found
......@@ -6,7 +6,8 @@
<b>
<?php
// course number with same-subject crosslistings
if(in_array('Classroom', $course->deliveryMethods)) {
if( in_array('Classroom', $course->deliveryMethods)
|| in_array('Web', $course->deliveryMethods)) {
echo $course->courseNumber . $course->courseLetter;
foreach($course->crosslistings as $crosslisting) {
if($crosslisting->type == 'home listing') {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment