Commit 6fc63478 authored by Yassine Doghri's avatar Yassine Doghri
Browse files

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

parent 366eaeb0
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -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);