diff --git a/airtime_mvc/application/configs/navigation.php b/airtime_mvc/application/configs/navigation.php index 8ab913804..400a8b509 100644 --- a/airtime_mvc/application/configs/navigation.php +++ b/airtime_mvc/application/configs/navigation.php @@ -54,28 +54,27 @@ $pages = array( 'controller' => 'Preference' ), array( - 'label' => 'Manage Users', + 'label' => 'Users', 'module' => 'default', 'controller' => 'user', 'action' => 'add-user', 'resource' => 'user' ), array( - 'label' => 'Manage Media Folders', + 'label' => 'Media Folders', 'module' => 'default', 'controller' => 'Preference', 'action' => 'directory-config', 'id' => 'manage_folder' ), array( - 'label' => 'Stream Settings', + 'label' => 'Streams', 'module' => 'default', 'controller' => 'Preference', 'action' => 'stream-setting' ), array( - 'label' => - Application_Model_Preference::GetPlanLevel() == 'disabled'?'Support Settings':'Station Information Settings', + 'label' => 'Support Feedback', 'module' => 'default', 'controller' => 'Preference', 'action' => 'support-setting' diff --git a/airtime_mvc/application/controllers/PreferenceController.php b/airtime_mvc/application/controllers/PreferenceController.php index 4d2018bba..6c59c4eca 100644 --- a/airtime_mvc/application/controllers/PreferenceController.php +++ b/airtime_mvc/application/controllers/PreferenceController.php @@ -111,7 +111,7 @@ class PreferenceController extends Zend_Controller_Action $privacyChecked = true; } $this->view->privacyChecked = $privacyChecked; - $this->view->section_title = Application_Model_Preference::GetPlanLevel() == 'disabled'?'Support Settings':'Station Information Settings'; + $this->view->section_title = 'Support Feedback'; $this->view->form = $form; //$form->render($this->view); }