diff --git a/booking.tokens.inc b/booking.tokens.inc index 233825b..54963b7 100644 --- a/booking.tokens.inc +++ b/booking.tokens.inc @@ -629,7 +629,7 @@ function booking_define_personspecific_tokens($node) $tokens['paypal-total-amount'] = _booking_amount_owing($node, $amount_paid); $tokens['stripe-deposit-amount'] = ""; $tokens['stripe-total-amount'] = ""; - $tokens['stripe-total-intl'] = ""; + $tokens['stripe-total-amount-intl'] = ""; } //if stripe is enabled elseif ($payment_processor_type == 1) { @@ -637,7 +637,7 @@ function booking_define_personspecific_tokens($node) $tokens['paypal-total-amount'] = ""; $tokens['stripe-deposit-amount'] = _booking_deposit_amount($node, TRUE); $tokens['stripe-total-amount'] = _booking_amount_owing($node, $amount_paid, TRUE, FALSE); - $tokens['stripe-total-intl'] = _booking_amount_owing($node, $amount_paid, TRUE, TRUE); + $tokens['stripe-total-amount-intl'] = _booking_amount_owing($node, $amount_paid, TRUE, TRUE); } //if travelform is enabled if (variable_get('booking_enable_travelform', 0) == 1) {