From 3eb4b21521931e065868f6fabed8ab692e883458 Mon Sep 17 00:00:00 2001 From: Chris Smith Date: Fri, 8 Mar 2019 13:56:01 -0600 Subject: [PATCH] update notes for email --- index.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.php b/index.php index 7ceb7ff..75f4d12 100644 --- a/index.php +++ b/index.php @@ -184,10 +184,10 @@ $router->post('/checkout', function () { // Check if payment was made with Stripe if (isset($stripeCustomerToken)) { - $paymentMethod = 'credit_payment'; + $paymentMethod = 'check_payment'; $paymentNote = $stripeCustomerToken; }else{ - $paymentMethod = 'check_payment'; + $paymentMethod = 'credit_payment'; $paymentNote = true; }