From 117e20dc86a56c083e8d9a29e0b2edb8cf5fe4d0 Mon Sep 17 00:00:00 2001 From: Steve Sutton Date: Wed, 31 Jul 2019 07:59:47 -0400 Subject: [PATCH] Update the insert statement for invoice_payments table. column transaction_time not there. --- classes/billingSupport.php | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/classes/billingSupport.php b/classes/billingSupport.php index f4b7cf2..80f361e 100644 --- a/classes/billingSupport.php +++ b/classes/billingSupport.php @@ -288,13 +288,11 @@ class GlmBillingSupport array( 'invoice' => $invoice, 'payment' => $payment, - 'amount' => $amount, - 'transaction_time' => date('Y-m-d H:i:s') + 'amount' => $amount ), array( '%d', '%d', - '%s', '%s' ) ); -- 2.17.1