From c58ae2b0396c963bd213abed9070a032fafee0f7 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Sun, 4 Feb 2018 10:53:32 +0200 Subject: [PATCH] Show email footer during trial --- app/Models/Account.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Models/Account.php b/app/Models/Account.php index 05bf022ffb5b..9fe3bcc76016 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -1100,7 +1100,7 @@ class Account extends Eloquent public function isPaid() { - return Utils::isNinja() ? $this->isPro() : Utils::isWhiteLabel(); + return Utils::isNinja() ? ($this->isPro() && ! $this->isTrial()) : Utils::isWhiteLabel(); } /**