Skip to content

Commit

Permalink
fix: corrected handling for quotes, closes #3285
Browse files Browse the repository at this point in the history
  • Loading branch information
thorsten committed Dec 12, 2024
1 parent 0e1d24e commit bc7e3e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions phpmyfaq/assets/templates/default/startpage.twig
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
<h4 class="h6 mb-2">
<a class="latest-entries" data-bs-toggle="tooltip" data-bs-placement="top"
title="{{ topten.preview }}" href="{{ topten.url }}">
{{ topten.title }}
{{ topten.title | raw }}
</a>
</h4>
<div class="d-flex align-items-center text-muted">
Expand Down Expand Up @@ -105,7 +105,7 @@
<h4 class="h6 mb-2">
<a class="latest-entries" data-bs-toggle="tooltip" data-bs-placement="top"
title="{{ latest.preview }}" href="{{ latest.url }}">
{{ latest.title }}
{{ latest.title | raw }}
</a>
</h4>
<div class="d-flex align-items-center text-muted">
Expand Down Expand Up @@ -137,7 +137,7 @@
<h4 class="h6 mb-2">
<a class="latest-entries" data-bs-toggle="tooltip" data-bs-placement="top"
title="{{ trending.preview }}" href="{{ trending.url }}">
{{ trending.title }}
{{ trending.title | raw }}
</a>
</h4>
<div class="d-flex align-items-center text-muted">
Expand Down

0 comments on commit bc7e3e0

Please sign in to comment.