mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-06 18:31:05 +00:00
fix(rss): remove escaping for publisher and owner name
This commit is contained in:
parent
16bf0c2e72
commit
e2046e4b11
@ -234,12 +234,13 @@ if (! function_exists('get_rss_feed')) {
|
|||||||
'author',
|
'author',
|
||||||
$podcast->publisher ? $podcast->publisher : $podcast->owner_name,
|
$podcast->publisher ? $podcast->publisher : $podcast->owner_name,
|
||||||
$itunesNamespace,
|
$itunesNamespace,
|
||||||
|
false
|
||||||
);
|
);
|
||||||
$channel->addChild('link', $podcast->link);
|
$channel->addChild('link', $podcast->link);
|
||||||
|
|
||||||
$owner = $channel->addChild('owner', null, $itunesNamespace);
|
$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);
|
$owner->addChild('email', $podcast->owner_email, $itunesNamespace);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user