diff --git a/api/resources/views/rss/news.blade.php b/api/resources/views/rss/news.blade.php index 9f6d7ba..1cfc5db 100644 --- a/api/resources/views/rss/news.blade.php +++ b/api/resources/views/rss/news.blade.php @@ -21,8 +21,8 @@ @foreach($news as $item) https://nhgooi.nl/news-{{$item->id}} - <![CDATA[{!!$item->title!!}]]> - content!!}]]> + <![CDATA[{!!html_entity_decode($item->title)!!}]]> + content)!!}]]> https://nhgooi.nl{{$item->url}} {{$item->published->format('r')}} @if($item->images) diff --git a/api/resources/views/rss/podcasts.blade.php b/api/resources/views/rss/podcasts.blade.php index cb58ac3..987800c 100644 --- a/api/resources/views/rss/podcasts.blade.php +++ b/api/resources/views/rss/podcasts.blade.php @@ -33,8 +33,8 @@ @foreach($podcasts as $podcast) https://nhgooi.nl/podcast-{{$podcast->id}} - {{$podcast->title}} - {{$podcast->content}} + {{html_entity_decode($podcast->title)}} + {{html_entity_decode($podcast->content)}} https://nhgooi.nl/gemist/fragment/{{$podcast->url}} {{$podcast->created->format('r')}}