mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-03 23:09:18 +02:00
fix: unnescape podcast title special characters in "find us on" section
fixes #323
This commit is contained in:
parent
ebb9be985a
commit
f727276f82
1 changed files with 1 additions and 1 deletions
|
|
@ -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): ?>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue