SAAS-833: Radio page UI improvements/fixes
Fixed schedule widget scrolling Inserted default station description
This commit is contained in:
parent
2cf6cb549e
commit
1add10c657
3 changed files with 2 additions and 3 deletions
|
@ -20,11 +20,9 @@ class IndexController extends Zend_Controller_Action
|
|||
$this->view->stationLogo = Application_Model_Preference::GetStationLogo();
|
||||
|
||||
$stationName = Application_Model_Preference::GetStationName();
|
||||
$stationName = empty($stationName) ? "Station Name" : $stationName;
|
||||
$this->view->stationName = $stationName;
|
||||
|
||||
$stationDescription = Application_Model_Preference::GetStationDescription();
|
||||
$stationDescription = empty($stationDescription) ? "Station Description" : $stationDescription;
|
||||
$this->view->stationDescription = $stationDescription;
|
||||
|
||||
$this->view->stationUrl = Application_Common_HTTPHelper::getStationUrl();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue