From aa2d20991fd154f9ff02cac8a1197c086afef613 Mon Sep 17 00:00:00 2001 From: Omar Pera Date: Thu, 19 Mar 2015 17:25:21 -0400 Subject: [PATCH] Missing bracket on purchase form --- app/views/visitors/_purchase.html.erb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/visitors/_purchase.html.erb b/app/views/visitors/_purchase.html.erb index fcf5d8e..743459c 100644 --- a/app/views/visitors/_purchase.html.erb +++ b/app/views/visitors/_purchase.html.erb @@ -37,7 +37,7 @@
<%= label_tag :card_month, "Card Expiry" %> - <%= select_month nil, { use_two_digit_numbers: true}, { name: nil, data: {stripe: 'exp-month' } %> + <%= select_month nil, { use_two_digit_numbers: true}, { name: nil, data: {stripe: 'exp-month' } } %> <%= select_year nil, {start_year: Date.today.year, end_year: Date.today.year+10}, { name: nil, data: {stripe: 'exp-year' } } %>
<% end %>