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

Handle when a course is scheduled at "ARR".

parent c235127c
No related branches found
No related tags found
No related merge requests found
......@@ -175,7 +175,7 @@ class Courses_ScheduleModel extends Unl_Model
public function _parseDate($dateText)
{
if (!$dateText) {
if (!$dateText || $dateText == 'ARR') {
$dateText = '00/00/0000';
}
......@@ -192,7 +192,7 @@ class Courses_ScheduleModel extends Unl_Model
public function _parseTime($timeText)
{
if (!$timeText) {
if (!$timeText || $timeText == 'ARR') {
$timeText = '1200AM';
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment