Skip to content
Snippets Groups Projects
Commit 6fc63478 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

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

parent 366eaeb0
No related branches found
No related tags found
No related merge requests found
......@@ -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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment