-fix using instance id instead of show id
This commit is contained in:
Martin Konecny 2013-04-30 12:11:37 -04:00
parent 992e3c37ef
commit af7b2d5347
1 changed files with 2 additions and 2 deletions

View File

@ -354,8 +354,8 @@ $(document).ready(function() {
callback = function() {
$.post(oItems.schedule.url, {format: "json", id: data.id}, function(json){
buildScheduleDialog(json, data.id);
$.post(oItems.schedule.url, {format: "json", id: data.showId}, function(json){
buildScheduleDialog(json, data.showId);
});
};