CC-3114: Show Content Dialog doesn't display total time

Somehow this file didn't get committed...
This commit is contained in:
Yuchen Wang 2012-01-05 10:30:37 -05:00
parent 722306928b
commit 1044881666
1 changed files with 4 additions and 1 deletions

View File

@ -443,6 +443,9 @@ class ScheduleController extends Zend_Controller_Action
"Rebroadcast of show \"$originalShowName\" from " "Rebroadcast of show \"$originalShowName\" from "
.$originalDateTime->format("l, F jS")." at ".$originalDateTime->format("G:i"); .$originalDateTime->format("l, F jS")." at ".$originalDateTime->format("G:i");
} }
$this->view->showLength = $show->getShowLength();
$this->view->timeFilled = $show->getTimeScheduled();
$this->view->percentFilled = $show->getPercentScheduled();
$this->view->showContent = $show->getShowListContent(); $this->view->showContent = $show->getShowListContent();
$this->view->dialog = $this->view->render('schedule/show-content-dialog.phtml'); $this->view->dialog = $this->view->render('schedule/show-content-dialog.phtml');
unset($this->view->showContent); unset($this->view->showContent);