# HG changeset patch # User Nathan Phillip Brink # Date 2012-06-21 00:48:46 # Node ID 88c82eb387bcdbcd03c1b3a7ff63f970655426a8 # Parent a72ad365c4f07d4832ae8f09e739c7148455f727 Add section_meeting date_start/date_end data to the edit schedule'' page so that this information is not lost when editing a saved schedule. diff --git a/input.php b/input.php old mode 100755 new mode 100644 --- a/input.php +++ b/input.php @@ -392,7 +392,9 @@ function input_course_js(Course $course, . json_encode($meeting->getLocation()) . ', ' . json_encode($meeting->type_get()) . ', ' . json_encode($course_slot->id_get()) . ', ' - . json_encode($section->credit_hours_get()) . ');' . PHP_EOL; + . json_encode($section->credit_hours_get()) .', ' + . json_encode($meeting->date_start_get()) . ', ' + . json_encode($meeting->date_end_get()) . ');' . PHP_EOL; } }