lib/active_merchant/billing/gateways/wirecard.rb in activemerchant-1.87.0 vs lib/active_merchant/billing/gateways/wirecard.rb in activemerchant-1.88.0

- old
+ new

@@ -200,14 +200,14 @@ xml = Builder::XmlMarkup.new :indent => 2 xml.instruct! xml.tag! 'WIRECARD_BXML' do xml.tag! 'W_REQUEST' do xml.tag! 'W_JOB' do - xml.tag! 'JobID', '' - # UserID for this transaction - xml.tag! 'BusinessCaseSignature', options[:signature] || options[:login] - # Create the whole rest of the message - add_transaction_data(xml, money, options) + xml.tag! 'JobID', '' + # UserID for this transaction + xml.tag! 'BusinessCaseSignature', options[:signature] || options[:login] + # Create the whole rest of the message + add_transaction_data(xml, money, options) end end end xml.target! end