Merge pull request #22240 from ATM-Consulting/FIX_rich_text_on_description_task

FIX :  Rich text is not diplayed
This commit is contained in:
Laurent Destailleur 2022-09-13 15:21:27 +02:00 committed by GitHub
commit 771f1dcc67
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -988,7 +988,7 @@ while ($i < min($num, $limit)) {
// Description
if (!empty($arrayfields['t.description']['checked'])) {
print '<td>';
print dol_escape_htmltag($object->description);
print dolGetFirstLineOfText($object->description, 5);
print '</td>';
if (!$i) {
$totalarray['nbfield']++;