From b17cd2b3c9d112ae9cbd02bad40595416708b1c9 Mon Sep 17 00:00:00 2001 From: denise Date: Thu, 16 Aug 2012 15:58:03 -0400 Subject: [PATCH] CC-4178: Smart Playlist: Cannot update the block's title -fixed --- .../controllers/PlaylistController.php | 23 +------------------ 1 file changed, 1 insertion(+), 22 deletions(-) diff --git a/airtime_mvc/application/controllers/PlaylistController.php b/airtime_mvc/application/controllers/PlaylistController.php index 1f213fea6..38db5dda8 100644 --- a/airtime_mvc/application/controllers/PlaylistController.php +++ b/airtime_mvc/application/controllers/PlaylistController.php @@ -488,7 +488,7 @@ class PlaylistController extends Zend_Controller_Action $obj = $this->getPlaylist($type); $obj->setName($name); $obj->setDescription($description); - $this->view->description = $obj->getDescription(); + $this->view->description = $description(); $this->view->playlistName = $name; $this->view->modified = $obj->getLastModified("U"); } catch (PlaylistOutDatedException $e) { @@ -499,27 +499,6 @@ class PlaylistController extends Zend_Controller_Action $this->playlistUnknownError($e); } } - - /* - public function setPlaylistDescriptionAction() - { - $description = $this->_getParam('description', ""); - $type = $this->_getParam('type'); - - try { - $obj = $this->getPlaylist($type); - $obj->setDescription($description); - $this->view->description = $obj->getDescription(); - $this->view->modified = $obj->getLastModified("U"); - } catch (PlaylistOutDatedException $e) { - $this->playlistOutdated($e); - } catch (PlaylistNotFoundException $e) { - $this->playlistNotFound($type); - } catch (Exception $e) { - $this->playlistUnknownError($e); - } - } - */ public function saveAction() {