for me, this is PROBLEM.
So, then I look for workaround. I found this workaround as easy as changing the source code a little bit.
I changed the code in ControllerPaymentBankTransfer (/catalog/controller/payment/bank_transfer.php), on line 12.
Original code:
Code: Select all
nl2br($this->config->get('bank_transfer_bank_' . $this->language->getId()));
Code: Select all
html_entity_decode($this->config->get('bank_transfer_bank_' . $this->language->getId()));
Any security consideration on doing this? Feedback welcome!