Skip to content

Commit d072b09

Browse files
fix: remove html escaping from the concert field for the utopians
1 parent 52b1a86 commit d072b09

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

single-utopian.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,11 @@
3131
$concert = get_field( 'concert' );
3232
if ( ! empty( $concert ) ) :
3333
?>
34-
<div class="p-24-120 grey uto-t"><?php echo esc_html( $concert ); ?></div>
34+
<div class="p-24-120 grey uto-t">
35+
<?php
36+
// phpcs:ignore
37+
echo $concert; ?>
38+
</div>
3539
<?php endif; ?>
3640
</div>
3741
<?php

0 commit comments

Comments
 (0)