Display message on radio page if no podcast tracks have been published yet.

This commit is contained in:
drigato 2015-11-16 15:28:54 -05:00
parent f2ce22a1fa
commit 5828361465
2 changed files with 42 additions and 35 deletions

View file

@ -82,6 +82,7 @@ class IndexController extends Zend_Controller_Action
$stationName = Application_Model_Preference::GetStationName();
$this->view->podcastTitle = sprintf(_("%s Podcast"), !empty($stationName) ? $stationName : $CC_CONFIG["stationId"]);
$this->view->emptyPodcastMessage = _("No tracks have been published yet.");
}