From 5a37777cfd149aac1d2e2065460b1e2508dd3110 Mon Sep 17 00:00:00 2001 From: Rudi Grinberg Date: Mon, 17 Sep 2012 17:04:49 -0400 Subject: [PATCH] formatting --- airtime_mvc/application/models/ShowBuilder.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/airtime_mvc/application/models/ShowBuilder.php b/airtime_mvc/application/models/ShowBuilder.php index b73a341d0..b6ecfd1fe 100644 --- a/airtime_mvc/application/models/ShowBuilder.php +++ b/airtime_mvc/application/models/ShowBuilder.php @@ -440,9 +440,12 @@ class Application_Model_ShowBuilder //make the last footer if there were any scheduled items. if (count($scheduled_items) > 0) { - $display_items[] = $this->makeFooterRow($scheduled_items[count($scheduled_items)-1]); + $display_items[] = $this->makeFooterRow($scheduled_items[ + count($scheduled_items)-1]); } - return array("schedule" => $display_items, "showInstances" => $this->showInstances); + return array( + "schedule" => $display_items, + "showInstances" => $this->showInstances); } }