diff --git a/airtime_mvc/application/models/Show.php b/airtime_mvc/application/models/Show.php index a8297017f..2f3f95a8e 100644 --- a/airtime_mvc/application/models/Show.php +++ b/airtime_mvc/application/models/Show.php @@ -176,7 +176,7 @@ class Application_Model_Show { //update all cc_show_instances that are in the future. $sql = "UPDATE cc_show_instances SET ends = (ends + interval '{$deltaDay} days' + interval '{$hours}:{$mins}') - WHERE (show_id = {$this->_showId} AND starts > '$current_timestamp') + WHERE (show_id = {$this->_showId} AND ends > '$current_timestamp') AND ((ends + interval '{$deltaDay} days' + interval '{$hours}:{$mins}' - starts) <= interval '24:00');"; //update cc_show_days so future shows can be created with the new duration. @@ -1133,7 +1133,7 @@ class Application_Model_Show { try { //update the status flag in cc_schedule. $instances = CcShowInstancesQuery::create() - ->filterByDbStarts($current_timestamp, Criteria::GREATER_EQUAL) + ->filterByDbEnds($current_timestamp, Criteria::GREATER_THAN) ->filterByDbShowId($data['add_show_id']) ->find($con); @@ -1618,7 +1618,7 @@ class Application_Model_Show { $options["percent"] = Application_Model_Show::getPercentScheduled($show["starts"], $show["ends"], $show["time_filled"]); } - if ($p_editable && (strtotime($today_timestamp) < strtotime($show["starts"]))) { + if ($p_editable && (strtotime($today_timestamp) < strtotime($show["ends"]))) { $options["editable"] = true; } diff --git a/airtime_mvc/application/models/ShowBuilder.php b/airtime_mvc/application/models/ShowBuilder.php index 9d320aec8..1d1b05817 100644 --- a/airtime_mvc/application/models/ShowBuilder.php +++ b/airtime_mvc/application/models/ShowBuilder.php @@ -208,7 +208,7 @@ class Application_Model_ShowBuilder { $this->getScheduledStatus($startsEpoch, min($endsEpoch, $showEndEpoch), $row); $row["id"] = intval($p_item["sched_id"]); - $row["image"] = $p_item["file_exists"] ? true : false; + $row["image"] = $p_item["file_exists"] == "t" ? true : false; $row["instance"] = intval($p_item["si_id"]); $row["starts"] = $schedStartDT->format("H:i:s"); $row["ends"] = $schedEndDT->format("H:i:s"); diff --git a/airtime_mvc/public/js/airtime/preferences/streamsetting.js b/airtime_mvc/public/js/airtime/preferences/streamsetting.js index 422bb4a9f..3c05bd8e5 100644 --- a/airtime_mvc/public/js/airtime/preferences/streamsetting.js +++ b/airtime_mvc/public/js/airtime/preferences/streamsetting.js @@ -116,9 +116,9 @@ function setLiveSourceConnectionOverrideListener(){ // set action for "OK" and "X" var live_dj_input = $("#live_dj_connection_url_tb") - var live_dj_label = live_dj_input.parent().find("span") + var live_dj_label = live_dj_input.parent().find("#stream_url") var master_dj_input = $("#master_dj_connection_url_tb") - var master_dj_label = master_dj_input.parent().find("span") + var master_dj_label = master_dj_input.parent().find("#stream_url") live_dj_input.find("#ok").click(function(event){ event.preventDefault()