Skip to content
Snippets Groups Projects
Commit 0e9e0392 authored by drastik's avatar drastik
Browse files

Fix possibility for "Undefined index: class" assigning .stripe-payment-form in hook_buildForm().

parent 0e331ba6
No related branches found
No related tags found
No related merge requests found
......@@ -122,6 +122,9 @@ function stripe_civicrm_buildForm($formName, &$form) {
if (!stristr($formName, '_Confirm') && !stristr($formName, '_ThankYou')) {
// This is the 'Main', or first step of the form that collects CC data.
if (!isset($form->_elementIndex['stripe_token'])) {
if (empty($form->_attributes['class'])) {
$form->_attributes['class'] = '';
}
$form->_attributes['class'] .= " stripe-payment-form";
$form->addElement('hidden', 'stripe_token', NULL, array('id' => 'stripe-token'));
stripe_add_stripe_js($form);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment