- webstream controller wasn't assigning webstream object properly

This commit is contained in:
denise 2012-09-11 15:10:30 -04:00
parent c56d3e47ef
commit bc355fe7a7
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ class WebstreamController extends Zend_Controller_Action
if ($webstream) {
Application_Model_Library::changePlaylist($id, "stream");
}
$this->view->obj = new Application_Model_Webstream($webstream);
$this->view->obj = new Application_Model_Webstream($webstream->getDbId());
$this->view->action = "edit";
$this->view->html = $this->view->render('webstream/webstream.phtml');
}