1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-11-08 20:22:42 +01:00

Show 'Pay with credit card' with PayPal

This commit is contained in:
Hillel Coren 2016-09-26 09:20:06 +03:00
parent 0d3be448df
commit 4b3507211a

View File

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