fix: unnescape podcast title special characters in "find us on" section

fixes #323
This commit is contained in:
Yassine Doghri 2023-04-17 11:36:40 +00:00
parent ebb9be985a
commit f727276f82
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@
in_array(true, array_column($podcast->socialPlatforms, 'is_visible'), true)
): ?>
<h2 class="text-sm font-bold font-display text-accent-muted"> <?= lang('Podcast.find_on', [
'podcastTitle' => esc($podcast->title),
'podcastTitle' => $podcast->title,
]) ?></h2>
<div class="grid items-center justify-center grid-cols-6 gap-3 mb-6">
<?php foreach ($podcast->socialPlatforms as $socialPlatform): ?>