MultiSafepay / Magento2Msp

MultiSafepay plugin for Magento 2 (Deprecated) see: https://github.com/MultiSafepay/magento2
Open Software License 3.0
29 stars 25 forks source link

Fix: htmlParseEntityRef: expecting ';' error #92 #93

Closed nocturnalfrog closed 5 years ago

nocturnalfrog commented 5 years ago

Fixes issue #92

nocturnalfrog commented 5 years ago

Bonus: You can fix the bad data by executing the following query.

UPDATE `sales_order_status_history` SET `comment` = REPLACE(`comment`, '&trxid', '&trxid') WHERE `comment` LIKE '%&trxid%' COLLATE utf8mb4_bin
Jasper-MultiSafepay commented 5 years ago

Thanks @nocturnalfrog This already has been accepted on our develop branch in https://github.com/MultiSafepay/Magento2Msp/pull/82

The bonus query is a good idea, but it would be risky if it's executed on all orders instead of only MultiSafepay orders.