diff --git a/airtime_mvc/application/controllers/IndexController.php b/airtime_mvc/application/controllers/IndexController.php index 30e3f61ac..f3cc0d436 100644 --- a/airtime_mvc/application/controllers/IndexController.php +++ b/airtime_mvc/application/controllers/IndexController.php @@ -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(); diff --git a/airtime_mvc/build/sql/defaultdata.sql b/airtime_mvc/build/sql/defaultdata.sql index 438dfc979..8e6d189c6 100644 --- a/airtime_mvc/build/sql/defaultdata.sql +++ b/airtime_mvc/build/sql/defaultdata.sql @@ -1,5 +1,6 @@ -- Schema version INSERT INTO cc_pref("keystr", "valstr") VALUES('system_version', '2.5.9'); +INSERT INTO cc_pref("keystr", "valstr") VALUES('description', 'Powered by Airtime Pro'); INSERT INTO cc_subjs ("login", "type", "pass") VALUES ('admin', 'A', md5('admin')); -- added in 2.3 diff --git a/airtime_mvc/public/css/radio-page/weekly-schedule-widget.css b/airtime_mvc/public/css/radio-page/weekly-schedule-widget.css index 5f32e90dd..b7d0e19e6 100644 --- a/airtime_mvc/public/css/radio-page/weekly-schedule-widget.css +++ b/airtime_mvc/public/css/radio-page/weekly-schedule-widget.css @@ -61,7 +61,7 @@ body { max-height: 0px; transition: max-height 2s ease; - overflow-y: scroll; + overflow-y: auto; /*transition-delay: 1s;*/ }