From 483026a767a2238ff537a486adbb22bab6f63254 Mon Sep 17 00:00:00 2001 From: Tim Steiner <tsteiner2@unl.edu> Date: Fri, 2 Feb 2007 16:56:26 +0000 Subject: [PATCH] Web only courses did not have their course number displayed in the bulletin preview. They do now. --- application/views/request/bulletinEntry.xhtml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/application/views/request/bulletinEntry.xhtml b/application/views/request/bulletinEntry.xhtml index ad28f52b..f10dec9f 100644 --- a/application/views/request/bulletinEntry.xhtml +++ b/application/views/request/bulletinEntry.xhtml @@ -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') { -- GitLab