CC-1805: Ability to edit a show

-fixed problem with changing a repeating rebroadcast show to a non-repeating rebroadcast show
This commit is contained in:
martin 2011-04-12 23:28:37 -04:00
parent ce2b5564e4
commit b034958fc5

View file

@ -452,7 +452,6 @@ class Show {
public static function deletePossiblyInvalidInstances($p_data, $p_show, $p_endDate, $isRecorded, $repeatType) public static function deletePossiblyInvalidInstances($p_data, $p_show, $p_endDate, $isRecorded, $repeatType)
{ {
if ($p_data['add_show_repeats'] != $p_show->isRepeating() if ($p_data['add_show_repeats'] != $p_show->isRepeating()
|| $isRecorded){ || $isRecorded){
//repeat option was toggled or show is recorded. //repeat option was toggled or show is recorded.
@ -542,7 +541,7 @@ class Show {
if ($data['add_show_no_end']) { if ($data['add_show_no_end']) {
$endDate = NULL; $endDate = NULL;
$data['add_show_repeats'] = 1; //$data['add_show_repeats'] = 1;
} }
else if ($data['add_show_repeats']) { else if ($data['add_show_repeats']) {
$sql = "SELECT date '{$data['add_show_end_date']}' + INTERVAL '1 day' "; $sql = "SELECT date '{$data['add_show_end_date']}' + INTERVAL '1 day' ";
@ -558,18 +557,12 @@ class Show {
//only want the day of the week from the start date. //only want the day of the week from the start date.
if (!$data['add_show_repeats']) { if (!$data['add_show_repeats']) {
$data['add_show_day_check'] = array($startDow); $data['add_show_day_check'] = array($startDow);
} } else if ($data['add_show_repeats'] && $data['add_show_day_check'] == "") {
else if ($data['add_show_repeats'] && $data['add_show_day_check'] == "") {
$data['add_show_day_check'] = array($startDow); $data['add_show_day_check'] = array($startDow);
} }
//find repeat type or set to a non repeating show. //find repeat type or set to a non repeating show.
if ($data['add_show_repeats']) { $repeatType = ($data['add_show_repeats']) ? $data['add_show_repeat_type'] : -1;
$repeatType = $data["add_show_repeat_type"];
}
else {
$repeatType = -1;
}
if ($data['add_show_id'] == -1){ if ($data['add_show_id'] == -1){
$ccShow = new CcShow(); $ccShow = new CcShow();