diff --git a/airtime_mvc/application/common/PodcastManager.php b/airtime_mvc/application/common/PodcastManager.php index 1e49463c1..ce1fc4cc6 100644 --- a/airtime_mvc/application/common/PodcastManager.php +++ b/airtime_mvc/application/common/PodcastManager.php @@ -75,7 +75,7 @@ class PodcastManager { array_push($episodes, $placeholder); } } - return $episodes; + return $episodPoes; } /** diff --git a/airtime_mvc/application/forms/GeneralPreferences.php b/airtime_mvc/application/forms/GeneralPreferences.php index 924264751..ec9390e5c 100644 --- a/airtime_mvc/application/forms/GeneralPreferences.php +++ b/airtime_mvc/application/forms/GeneralPreferences.php @@ -102,13 +102,13 @@ class Application_Form_GeneralPreferences extends Zend_Form_SubForm $podcast_album_override = new Zend_Form_Element_Radio('podcastAlbumOverride'); - $podcast_album_override->setLabel(_('Podcast Album Override')); + $podcast_album_override->setLabel(_('Podcast Metadata Override')); $podcast_album_override->setMultiOptions(array( _("Disabled"), _("Enabled"), )); $podcast_album_override->setValue(Application_Model_Preference::GetPodcastAlbumOverride()); - $podcast_album_override->setDescription(_('Enabling this means that podcast tracks will always contain the podcast name in their album field.')); + $podcast_album_override->setDescription(_('Enabling this means that podcast tracks will get their metadata set from the podcast feed values')); $podcast_album_override->setSeparator(' '); //No
between radio buttons $podcast_album_override->addDecorator('HtmlTag', array('tag' => 'dd', 'id'=>"podcastAlbumOverride-element",