CC-5082: Repeating shows "disappear" when switching calendar to next month
Small fix. Was treating object as an array
This commit is contained in:
parent
ded8ceb86b
commit
3d61a18261
|
@ -781,7 +781,7 @@ SQL;
|
|||
if (isset($this->ccShow)) {
|
||||
$showId = $this->ccShow->getDbId();
|
||||
} else {
|
||||
$showId = $showDay["show_id"];
|
||||
$showId = $showDay->getDbShowId();
|
||||
}
|
||||
|
||||
//DateTime object
|
||||
|
|
Loading…
Reference in New Issue