From bc355fe7a7d843ba65db14948316ea8d57db7f45 Mon Sep 17 00:00:00 2001 From: denise Date: Tue, 11 Sep 2012 15:10:30 -0400 Subject: [PATCH] - webstream controller wasn't assigning webstream object properly --- airtime_mvc/application/controllers/WebstreamController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtime_mvc/application/controllers/WebstreamController.php b/airtime_mvc/application/controllers/WebstreamController.php index d0b1ebf42..0a691246f 100644 --- a/airtime_mvc/application/controllers/WebstreamController.php +++ b/airtime_mvc/application/controllers/WebstreamController.php @@ -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'); }