Paypal Express
Posted: Fri May 21, 2021 3:44 am
Using paypal express, CEP 1.0.8.3 I get an error on the paypal return of:
Undefined index: PAYMENTREQUEST_0_SHIPTOSTREET2 in ext/modules/payment/paypal/express.php on line 393, referer: https://www.sandbox.paypal.com/
This error happens on both live/sandbox.
I simply surrounded the line with a if !empy
Anyone else experienced issues with this? After the above fix, all works great.
Undefined index: PAYMENTREQUEST_0_SHIPTOSTREET2 in ext/modules/payment/paypal/express.php on line 393, referer: https://www.sandbox.paypal.com/
This error happens on both live/sandbox.
I simply surrounded the line with a if !empy
Code: Select all
if (!empty($appPayPalEcResult['PAYMENTREQUEST_0_SHIPTOSTREET2'])) {
$ship_suburb = tep_db_prepare_input( $appPayPalEcResult['PAYMENTREQUEST_0_SHIPTOSTREET2'] );
}