mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-16 13:07:46 +02:00
fix(rss): remove escaping for publisher and owner name
This commit is contained in:
parent
366eaeb09e
commit
6fc6347846
1 changed files with 2 additions and 1 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue