everything is implemented backend wise for schedule dialog, just need to add html/css changes

This commit is contained in:
Naomi 2011-01-27 18:38:02 -05:00
parent be4d3f5466
commit f18f500e1e
7 changed files with 124 additions and 134 deletions

View file

@ -638,7 +638,7 @@ class Show {
return $length;
}
public function searchPlaylistsForShow($start_timestamp, $search=null){
public function searchPlaylistsForShow($start_timestamp, $datatables){
global $CC_DBC;
$sql = "SELECT EXTRACT(DOW FROM TIMESTAMP '{$start_timestamp}')";
@ -655,7 +655,6 @@ class Show {
$length = $this->getTimeUnScheduled($start_date, $start_date, $start_time, $end_time);
return Playlist::searchPlaylists($length, $search);
return StoredFile::searchPlaylistsForSchedule($length, $datatables);
}
}