Change station RSS image title to match channel title

This commit is contained in:
Duncan Sommerville 2015-11-17 19:28:52 -05:00
parent 0d585e30db
commit 6aafe25fd1
1 changed files with 1 additions and 1 deletions

View File

@ -370,7 +370,7 @@ class Application_Service_PodcastService
$imageUrl = Application_Common_HTTPHelper::getStationUrl(false)."api/station-logo"; $imageUrl = Application_Common_HTTPHelper::getStationUrl(false)."api/station-logo";
$image = $channel->addChild("image"); $image = $channel->addChild("image");
$image->addChild("title", "image title"); $image->addChild("title", $podcast->getDbTitle());
self::addEscapedChild($image, "url", $imageUrl); self::addEscapedChild($image, "url", $imageUrl);
self::addEscapedChild($image, "link", Application_Common_HTTPHelper::getStationUrl(false)); self::addEscapedChild($image, "link", Application_Common_HTTPHelper::getStationUrl(false));