Changeset - 88c82eb387bc
[Not reviewed]
default
0 1 0
Nathan Brink (binki) - 13 years ago 2012-06-21 00:48:46
ohnobinki@ohnopublishing.net
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.
1 file changed with 3 insertions and 1 deletions:
0 comments (0 inline, 0 general)
input.php
Show inline comments
 
modified file chmod 100755 => 100644
 
@@ -389,12 +389,14 @@ function input_course_js(Course $course,
 
				'w' => $meeting->getDay(2), 'h' => $meeting->getDay(3), 'f' => $meeting->getDay(4),
 
				's' => $meeting->getDay(5))) . ', '
 
	    . json_encode($meeting->instructor_get()) . ', '
 
	    . 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;
 
	}
 
    }
 

	
 
  return $js;
 
}
0 comments (0 inline, 0 general)