Skip to content

Commit

Permalink
Merge pull request #1463 from fmohican/master
Browse files Browse the repository at this point in the history
- closes #1434 
- closes #1437
  • Loading branch information
HDVinnie authored Oct 20, 2020
2 parents 868a3e1 + c5801e9 commit 5e85c0d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion resources/views/Staff/tag/edit.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<div class="container box">
<h2>
@lang('common.edit') @lang('torrent.torrent') @lang('torrent.genre-tags') (@lang('torrent.genre'))</h2>
<form role="form" method="POST" action="{{ route('staff.types.update', ['id' => $tag->id]) }}">
<form role="form" method="POST" action="{{ route('staff.tags.update', ['id' => $tag->id]) }}">
@csrf

<div class="form-group">
Expand Down
4 changes: 2 additions & 2 deletions resources/views/blocks/featured.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@
<span class="movie-desc">
@if ($feature->torrent->category->tv_meta ||
$feature->torrent->category->movie_meta)
{{ Str::limit(strip_tags($meta->plot), 200) }}...
{{ Str::limit(strip_tags($meta->plot), 200) ?? "" }}...
@endif
@if ($feature->torrent->category->game_meta && isset($meta) &&
$meta->summary)
{{ Str::limit(strip_tags($meta->summary), 200) }}...
{{ Str::limit(strip_tags($meta->summary), 200) ?? "" }}...
@endif
<br>
<br>
Expand Down

0 comments on commit 5e85c0d

Please sign in to comment.