Merge pull request #20771 from grandoc/new_branch_03_05_2022

fix : do not display html tags into list
This commit is contained in:
Laurent Destailleur 2022-05-03 23:50:34 +02:00 committed by GitHub
commit 003e821650
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2097,7 +2097,7 @@ if ($resql) {
// Note public
if (!empty($arrayfields['p.note_public']['checked'])) {
print '<td class="center">';
print dol_escape_htmltag($obj->note_public);
print dol_string_nohtmltag($obj->note_public);
print '</td>';
if (!$i) {
$totalarray['nbfield']++;
@ -2106,7 +2106,7 @@ if ($resql) {
// Note private
if (!empty($arrayfields['p.note_private']['checked'])) {
print '<td class="center">';
print dol_escape_htmltag($obj->note_private);
print dol_string_nohtmltag($obj->note_private);
print '</td>';
if (!$i) {
$totalarray['nbfield']++;