diff --git a/views/frontend/admin.blade.php b/views/frontend/admin.blade.php index abab7d7fb..38e29fb81 100644 --- a/views/frontend/admin.blade.php +++ b/views/frontend/admin.blade.php @@ -8,12 +8,11 @@

- - - @if ($logo = \Illuminate\Support\Arr::get($forum, 'logoUrl')) - + + @if ($forum['logoUrl']) + @else - {{ $title }} + {{ $forum['title'] }} @endif

diff --git a/views/frontend/forum.blade.php b/views/frontend/forum.blade.php index d4dd5cd9f..c6de4f301 100644 --- a/views/frontend/forum.blade.php +++ b/views/frontend/forum.blade.php @@ -1,4 +1,4 @@ -{!! \Illuminate\Support\Arr::get($forum, 'headerHtml') !!} +{!! $forum['headerHtml'] !!}
@@ -10,11 +10,11 @@
-{!! \Illuminate\Support\Arr::get($forum, 'footerHtml') !!} +{!! $forum['footerHtml'] !!}