1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-10 13:12:50 +01:00

Ensure PayPal transaction id is unique

This commit is contained in:
Hillel Coren 2017-03-28 12:47:11 +03:00
parent c7fd125f5b
commit dad4afff45

View File

@ -17,6 +17,7 @@ class PayPalExpressPaymentDriver extends BasePaymentDriver
$data['ButtonSource'] = 'InvoiceNinja_SP';
$data['solutionType'] = 'Sole'; // show 'Pay with credit card' option
$data['transactionId'] = $data['transactionId'] . '-' . time();
return $data;
}