Merged in [7732] from rjsparks@nostrum.com:

Extended ScheduledSession objects were not initialized correctly, so un-extending did not work. Fixes bug #1401.
 - Legacy-Id: 7761
Note: SVN reference [7732] has been migrated to Git commit 947f174e78
This commit is contained in:
Henrik Levkowetz 2014-05-20 20:05:48 +00:00
commit 11422d2853

View file

@ -308,7 +308,7 @@ function extend_slot(event) {
// need to create new scheduledsession
var new_ss = make_ss({ "session_id" : session.session_id,
"timeslot_id": slot.following_timeslot.timeslot_id,
"extended_from_id" : current_scheduledslot.scheduledsession_id});
"extendedfrom_id" : current_scheduledslot.scheduledsession_id});
// make_ss also adds to slot_status.
new_ss.saveit();