Change station podcast RSS links back to https; style fix for menu in some browsers

This commit is contained in:
Duncan Sommerville 2015-11-18 11:10:14 -05:00
parent eae8c7b638
commit 9a8e80f74b
4 changed files with 15 additions and 7 deletions

View file

@ -35,7 +35,7 @@ class PodcastEpisodes extends BasePodcastEpisodes
$file = CcFilesQuery::create()->findPk($fileId);
$ext = FileDataHelper::getAudioMimeTypeArray()[$file->getDbMime()];
$key = Application_Model_Preference::getStationPodcastDownloadKey();
return Application_Common_HTTPHelper::getStationUrl(false)."rest/media/$fileId/download/$key.$ext";
return Application_Common_HTTPHelper::getStationUrl()."rest/media/$fileId/download/$key.$ext";
}
return parent::getDbDownloadUrl();
}