From 183592e5517f3e96411e15313abb75ac18b44035 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Fri, 23 Dec 2016 11:50:55 +0200 Subject: [PATCH] Fix page title --- resources/views/master.blade.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/views/master.blade.php b/resources/views/master.blade.php index a4bafb84938d..4fb3ceac264b 100644 --- a/resources/views/master.blade.php +++ b/resources/views/master.blade.php @@ -1,7 +1,7 @@ - @if (isset($account) && $account instanceof \App\Models\Account && $account->hasFeature(FEATURE_WHITE_LABEL)) + @if (!Utils::isNinja() && !Auth::check()) {{ trans('texts.client_portal') }} @else {{ isset($title) ? ($title . ' | Invoice Ninja') : ('Invoice Ninja | ' . trans('texts.app_title')) }}