lib/active_merchant/billing/gateways/paymill.rb in activemerchant-1.101.0 vs lib/active_merchant/billing/gateways/paymill.rb in activemerchant-1.102.0

- old
+ new

@@ -84,10 +84,10 @@ post['account.number'] = credit_card.number post['account.expiry.month'] = sprintf('%.2i', credit_card.month) post['account.expiry.year'] = sprintf('%.4i', credit_card.year) post['account.verification'] = credit_card.verification_value post['account.email'] = (options[:email] || nil) - post['presentation.amount3D'] = (options[:money] || nil) + post['presentation.amount3D'] = (options[:money] || nil) post['presentation.currency3D'] = (options[:currency] || currency(options[:money])) end def headers { 'Authorization' => ('Basic ' + Base64.strict_encode64("#{@options[:private_key]}:X").chomp) }