fix(rss): remove escaping for publisher and owner name

This commit is contained in:
Yassine Doghri 2022-04-06 08:42:06 +00:00
parent 16bf0c2e72
commit e2046e4b11
1 changed files with 2 additions and 1 deletions

View File

@ -234,12 +234,13 @@ if (! function_exists('get_rss_feed')) {
'author',
$podcast->publisher ? $podcast->publisher : $podcast->owner_name,
$itunesNamespace,
false
);
$channel->addChild('link', $podcast->link);
$owner = $channel->addChild('owner', null, $itunesNamespace);
$owner->addChild('name', $podcast->owner_name, $itunesNamespace);
$owner->addChild('name', $podcast->owner_name, $itunesNamespace, false);
$owner->addChild('email', $podcast->owner_email, $itunesNamespace);