diff --git a/application/configs/navigation.php b/application/configs/navigation.php index 42ef8aab9..a451b8340 100644 --- a/application/configs/navigation.php +++ b/application/configs/navigation.php @@ -74,7 +74,7 @@ $pages = array( 'label' => 'Now Playing', 'module' => 'default', 'controller' => 'Schedule', - 'action' => 'get-scheduler-time' + 'action' => 'view-playlist' ), array( 'label' => 'Schedule', diff --git a/application/controllers/ScheduleController.php b/application/controllers/ScheduleController.php index 0121038cb..651efb191 100644 --- a/application/controllers/ScheduleController.php +++ b/application/controllers/ScheduleController.php @@ -175,7 +175,7 @@ class ScheduleController extends Zend_Controller_Action } } - public function getSchedulerTimeAction() + public function viewPlaylistAction() { $this->view->headScript()->appendFile('/js/playlist/playlist.js','text/javascript'); $this->view->headScript()->appendFile('/js/progressbar/jquery.progressbar.min.js','text/javascript'); diff --git a/application/views/scripts/schedule/get-scheduler-time.phtml b/application/views/scripts/schedule/view-playlist.phtml similarity index 100% rename from application/views/scripts/schedule/get-scheduler-time.phtml rename to application/views/scripts/schedule/view-playlist.phtml