Skip to content

Commit

Permalink
The Cyber Brief - Accentuated characters such as 'é' where rendered a…
Browse files Browse the repository at this point in the history
…s 'é' after strtoupper instead of 'É'.
  • Loading branch information
csavelief committed Sep 26, 2024
1 parent c232609 commit 84e809f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/views/modules/the-cyber-brief/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
<div class="card mb-4">
<div class="card-body">
<h5 id="toggle-{{ $brief->id }}" class="card-title cursor-pointer">
<span style="color:#f8b502">&gt;</span>&nbsp;{{ strtoupper($brief->brief($lang)['teaser']) }}
<span style="color:#f8b502">&gt;</span>&nbsp;{{ Illuminate\Support\Str::upper($brief->brief($lang)['teaser']) }}
</h5>
<h6 class="card-subtitle text-muted">
{{ $brief->brief($lang)['opener'] }}
Expand Down

0 comments on commit 84e809f

Please sign in to comment.