From 3df396756faa8ecb1eb0afead2d31bae1a13de1a Mon Sep 17 00:00:00 2001 From: Martin Konecny Date: Mon, 13 Feb 2012 12:10:23 -0500 Subject: [PATCH] CC-3323: Don't send description text to Full Calendar since it is never used. -Done --- airtime_mvc/application/models/Show.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/airtime_mvc/application/models/Show.php b/airtime_mvc/application/models/Show.php index 1f8170a5a..3e6f2a72c 100644 --- a/airtime_mvc/application/models/Show.php +++ b/airtime_mvc/application/models/Show.php @@ -1396,7 +1396,7 @@ class Application_Model_Show { Application_Model_Preference::SetShowsPopulatedUntil($end_timestamp); } - $sql = "SELECT starts, ends, record, rebroadcast, instance_id, show_id, name, description, + $sql = "SELECT starts, ends, record, rebroadcast, instance_id, show_id, name, color, background_color, file_id, cc_show_instances.id AS instance_id FROM cc_show_instances LEFT JOIN cc_show ON cc_show.id = cc_show_instances.show_id @@ -1536,7 +1536,6 @@ class Application_Model_Show { $event["start"] = $startDateTime->format("Y-m-d H:i:s"); $event["end"] = $endDateTime->format("Y-m-d H:i:s"); $event["allDay"] = false; - $event["description"] = $show["description"]; $event["showId"] = $show["show_id"]; $event["record"] = intval($show["record"]); $event["rebroadcast"] = intval($show["rebroadcast"]);