mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-10 05:02:36 +01:00
fixes for html entities
This commit is contained in:
parent
3006f5882b
commit
5a14b85eea
@ -75,11 +75,11 @@ trait CleanLineItems
|
||||
}
|
||||
|
||||
if(isset($item['notes'])) {
|
||||
$item['notes'] = str_replace("</", "<-", $item['notes']);
|
||||
$item['notes'] = str_replace("</sc", "<-", $item['notes']);
|
||||
}
|
||||
|
||||
if(isset($item['product_key'])) {
|
||||
$item['product_key'] = str_replace("</", "<-", $item['product_key']);
|
||||
$item['product_key'] = str_replace("</sc", "<-", $item['product_key']);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user