From d1edeb9dc7b77dbae948e4e24e3b9020fed66382 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Mon, 6 Mar 2017 12:22:01 +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 fb907d01c..6d5c3ca90 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; }