fix : do not display html tags into list
This commit is contained in:
parent
fa7254be9a
commit
356bc0d1e5
@ -2097,7 +2097,7 @@ if ($resql) {
|
|||||||
// Note public
|
// Note public
|
||||||
if (!empty($arrayfields['p.note_public']['checked'])) {
|
if (!empty($arrayfields['p.note_public']['checked'])) {
|
||||||
print '<td class="center">';
|
print '<td class="center">';
|
||||||
print dol_escape_htmltag($obj->note_public);
|
print dol_string_nohtmltag($obj->note_public);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
@ -2106,7 +2106,7 @@ if ($resql) {
|
|||||||
// Note private
|
// Note private
|
||||||
if (!empty($arrayfields['p.note_private']['checked'])) {
|
if (!empty($arrayfields['p.note_private']['checked'])) {
|
||||||
print '<td class="center">';
|
print '<td class="center">';
|
||||||
print dol_escape_htmltag($obj->note_private);
|
print dol_string_nohtmltag($obj->note_private);
|
||||||
print '</td>';
|
print '</td>';
|
||||||
if (!$i) {
|
if (!$i) {
|
||||||
$totalarray['nbfield']++;
|
$totalarray['nbfield']++;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user