lib/active_merchant/billing/gateways/safe_charge.rb in activemerchant-1.101.0 vs lib/active_merchant/billing/gateways/safe_charge.rb in activemerchant-1.102.0
- old
+ new
@@ -144,12 +144,12 @@
post[:sg_FirstName] = payment.first_name
post[:sg_LastName] = payment.last_name
post[:sg_Address] = address[:address1] if address[:address1]
post[:sg_City] = address[:city] if address[:city]
post[:sg_State] = address[:state] if address[:state]
- post[:sg_Zip] = address[:zip] if address[:zip]
- post[:sg_Country] = address[:country] if address[:country]
- post[:sg_Phone] = address[:phone] if address[:phone]
+ post[:sg_Zip] = address[:zip] if address[:zip]
+ post[:sg_Country] = address[:country] if address[:country]
+ post[:sg_Phone] = address[:phone] if address[:phone]
end
post[:sg_Email] = options[:email]
end