-webstream controller wasn't setting webstream object properly

This commit is contained in:
denise 2012-09-11 15:02:12 -04:00
parent 5a90521107
commit 8af91f3901
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class WebstreamController extends Zend_Controller_Action
//clear the session in case an old playlist was open: CC-4196
Application_Model_Library::changePlaylist(null, null);
$this->view->obj = new Application_Model_Webstream($webstream);
$this->view->obj = new Application_Model_Webstream($webstream->getDbId());
$this->view->action = "new";
$this->view->html = $this->view->render('webstream/webstream.phtml');
}