From ceeb0dca83ce09a8be3a40d680ff8ec5cea00fbe Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 4 Apr 2011 12:47:14 -0400 Subject: [PATCH] CC-2152: Week view schedule widget not displaying items chronologically -Done --- application/models/Shows.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/application/models/Shows.php b/application/models/Shows.php index fcb967133..2b5c57efe 100644 --- a/application/models/Shows.php +++ b/application/models/Shows.php @@ -1010,7 +1010,7 @@ class Show_DAL { { global $CC_CONFIG, $CC_DBC; - $sql = "SELECT si.starts as start_timestamp, si.ends as end_timestamp, s.name, s.id, si.id as instance_id, si.record" + $sql = "SELECT si.starts as start_timestamp, si.ends as end_timestamp, s.name, s.id, si.id as instance_id, si.record, s.url" ." FROM $CC_CONFIG[showInstances] si, $CC_CONFIG[showTable] s" ." WHERE si.show_id = s.id" ." AND si.starts <= TIMESTAMP '$timeNow'"