We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ef6e38 commit 1ea0bdcCopy full SHA for 1ea0bdc
api/entity.php
@@ -207,7 +207,7 @@
207
unset($section['coursetitle']);
208
209
// If it's online, don't bother looking up the times
210
- if($section['type'] == "O") {
+ if($section['type'] == "OL") {
211
$section['online'] = true;
212
} else {
213
// Look up the times the section meets
inc/databaseConn.php
@@ -66,7 +66,7 @@ function getMeetingInfo($sectionData) {
66
"courseParentNum" => "{$sectionData['department']}-{$sectionData['course']}",
67
"courseId" => $sectionData['courseId'],
68
"id" => $sectionData['id'],
69
- "online" => $sectionData['type'] == "O",
+ "online" => $sectionData['type'] == "OL",
70
"credits" => $sectionData['credits']
71
);
72
0 commit comments