lib/active_merchant/billing/gateways/pro_pay.rb in activemerchant-1.90.0 vs lib/active_merchant/billing/gateways/pro_pay.rb in activemerchant-1.91.0
- old
+ new
@@ -232,10 +232,10 @@
if address = options[:billing_address] || options[:address]
xml.addr address[:address1]
xml.aptNum address[:address2]
xml.city address[:city]
xml.state address[:state]
- xml.zip address[:zip]
+ xml.zip address[:zip].to_s.delete('-')
end
end
def add_account(xml, options)
xml.accountNum options[:account_num]