Projet

Général

Profil

0001-sips2-do-not-pass-customerEmail-9909.patch

Frédéric Péters, 08 février 2016 15:58

Télécharger (847 octets)

Voir les différences:

Subject: [PATCH] sips2: do not pass customerEmail (#9909)

 eopayment/sips2.py | 2 --
 1 file changed, 2 deletions(-)
eopayment/sips2.py
145 145
        data['transactionReference'] = unicode(transaction_id)
146 146
        data['orderId'] = unicode(uuid.uuid4()).replace('-', '')
147 147
        data['Amount'] = unicode(int(Decimal(amount) * 100))
148
        if email:
149
            data['customerEmail'] = email
150 148
        if next_url:
151 149
            data['normalReturnUrl'] = next_url
152 150
        form = Form(
153
-