mirror of
https://code.castopod.org/adaures/castopod
synced 2025-04-19 13:01:19 +00:00
fix(rss): remove escaping for publisher and owner name
This commit is contained in:
parent
366eaeb09e
commit
6fc6347846
@ -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);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user