formatting

This commit is contained in:
Rudi Grinberg 2012-09-17 17:04:49 -04:00
parent 9c5ebdc4c0
commit 5a37777cfd
1 changed files with 5 additions and 2 deletions

View File

@ -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);
}
}