Change:According to the latest PayPal Website Payments Standard Integration Guide the "lc" value should be the two character country ISO code. Currently the language is sent (e.g. en), where it should be sending the iso_code_2 value
Code: Select all
$this->data['fields']['lc'] = $this->language->getCode();
Code: Select all
$this->data['fields']['lc'] = $payment_address['iso_code_2'];