CC-2092: When listening to a rebroadcast show, UI is telling me show is empty

-Fixed
This commit is contained in:
martin 2011-03-28 18:07:16 -04:00
parent 70dd2a4838
commit d6c8e8ca3d
2 changed files with 26 additions and 1 deletions

View file

@ -930,7 +930,7 @@ class Show_DAL {
." OR (si.starts < TIMESTAMP '$timeNow' + INTERVAL '$end seconds' AND si.ends > TIMESTAMP '$timeNow' + INTERVAL '$end seconds'))"
//checking for st.starts IS NULL so that the query also returns shows that do not have any items scheduled.
." AND (st.starts < si.ends OR st.starts IS NULL)"
." ORDER BY st.starts";
." ORDER BY si.starts, st.starts";
return $CC_DBC->GetAll($sql);
}