Skip to content

Commit

Permalink
wrap author
Browse files Browse the repository at this point in the history
  • Loading branch information
TPGPL committed Feb 3, 2025
1 parent 6c6d728 commit 33551f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion resources/views/packs/index.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<div class="beatmap-pack__name">{{ $pack->name }}</div>
<div class="beatmap-pack__details">
<span class="beatmap-pack__date">{{ json_date($pack->date) }}</span>
<span>{!! osu_trans('beatmappacks.show.created_by', ['author' => "<strong>{$pack->author}</strong>"]) !!}</span>
<span>{!! osu_trans('beatmappacks.show.created_by', ['author' => "<strong>{make_blade_safe($pack->author)}</strong>"]) !!}</span>
</div>
</a>
<div class="beatmap-pack__body js-accordion__item-body"></div>
Expand Down
2 changes: 1 addition & 1 deletion resources/views/packs/show.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
<div class="beatmap-pack__name">{{ $pack->name }}</div>
<div class="beatmap-pack__details">
<span class="beatmap-pack__date">{{ json_date($pack->date) }}</span>
<span>{!! osu_trans('beatmappacks.show.created_by', ['author' => "<strong>{$pack->author}</strong>"]) !!}</span>
<span>{!! osu_trans('beatmappacks.show.created_by', ['author' => "<strong>{make_blade_safe($pack->author)}</strong>"]) !!}</span>
</div>
</a>

Expand Down

0 comments on commit 33551f1

Please sign in to comment.