From 085c82ab3ebe00cd5a47c662c1a614aabdda613c Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 6 Mar 2017 12:22:32 +0200 Subject: [PATCH] Show terms checkbox even if terms are blank --- 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 fb907d01c8ac..6d5c3ca90346 100644 --- a/app/Models/Account.php +++ b/app/Models/Account.php @@ -1606,7 +1606,7 @@ class Account extends Eloquent public function showAcceptTerms($invoice) { - if (! $this->isPro() || ! $invoice->terms) { + if (! $this->isPro()) { return false; }