From 28599d8d1f9949d9c761b86a678ecd34c38100b0 Mon Sep 17 00:00:00 2001 From: Nathan Coad Date: Thu, 21 Jul 2016 10:40:06 +1000 Subject: [PATCH] fix function call --- booking.stripe.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/booking.stripe.inc b/booking.stripe.inc index 144e1e6..c47ecc3 100644 --- a/booking.stripe.inc +++ b/booking.stripe.inc @@ -143,7 +143,7 @@ function booking_stripeform_form($form, &$form_state) { * Tries to add final validation after all else has been added through alters. */ function booking_stripeform_add_final_validation($form) { - $form['#validate'][] = 'stripeform_validate_form_payment'; + $form['#validate'][] = 'booking_stripeform_validate_form_payment'; return $form; }