From dd9e4ac8223cefad524101d294e9c68ad4b5b293 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Fri, 22 Jul 2016 15:49:02 +1000 Subject: [PATCH] temporary workaround for tokens --- booking.tokens.inc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/booking.tokens.inc b/booking.tokens.inc index c03f0d0..f58ec17 100644 --- a/booking.tokens.inc +++ b/booking.tokens.inc @@ -630,6 +630,9 @@ function booking_define_personspecific_tokens($node) } //if stripe is enabled elseif ($payment_processor_type == 1) { + //@todo remove the paypal tokens from here + $tokens['paypal-deposit-amount'] = _booking_deposit_amount($node, TRUE); + $tokens['paypal-total-amount'] = _booking_amount_owing($node, $amount_paid); $tokens['stripe-deposit-amount'] = _booking_deposit_amount($node, TRUE); $tokens['stripe-total-amount'] = _booking_amount_owing($node, $amount_paid); $tokens['stripe-total-intl'] = _booking_amount_owing($node, $amount_paid);