CC-1845 had changed implementation of this and had an incorrect parameter.

This commit is contained in:
Naomi 2011-02-02 11:38:04 -05:00
parent a1dee48759
commit 541c3a0e0e
1 changed files with 1 additions and 1 deletions

View File

@ -668,7 +668,7 @@ class Show {
$start_time = $row["start_time"];
$end_time = $row["end_time"];
$length = $this->getTimeUnScheduled($start_date, $start_date, $start_time, $end_time);
$length = $this->getTimeUnScheduled($start_date, $end_date, $start_time, $end_time);
return StoredFile::searchPlaylistsForSchedule($length, $datatables);
}