1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00

Show email footer during trial

This commit is contained in:
Hillel Coren 2018-02-04 10:53:43 +02:00
parent 3906c13c77
commit e0385b396d

View File

@ -1099,7 +1099,7 @@ class Account extends Eloquent
public function isPaid() public function isPaid()
{ {
return Utils::isNinja() ? $this->isPro() : Utils::isWhiteLabel(); return Utils::isNinja() ? ($this->isPro() && ! $this->isTrial()) : Utils::isWhiteLabel();
} }
/** /**