fixes for html entities

This commit is contained in:
David Bomba 2024-02-18 11:21:04 +11:00
parent 3006f5882b
commit 5a14b85eea

View File

@ -75,11 +75,11 @@ trait CleanLineItems
} }
if(isset($item['notes'])) { if(isset($item['notes'])) {
$item['notes'] = str_replace("</", "<-", $item['notes']); $item['notes'] = str_replace("</sc", "<-", $item['notes']);
} }
if(isset($item['product_key'])) { if(isset($item['product_key'])) {
$item['product_key'] = str_replace("</", "<-", $item['product_key']); $item['product_key'] = str_replace("</sc", "<-", $item['product_key']);
} }
} }