Merge pull request #19578 from fr69400/patch4

FIX - Missing one html conversion
This commit is contained in:
Laurent Destailleur 2021-12-09 17:31:03 +01:00 committed by GitHub
commit c4ef3ec116
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1460,12 +1460,12 @@ function pdf_getlinedesc($object, $i, $outputlangs, $hideref = 0, $hidedesc = 0,
if (!empty($conf->global->HIDE_LABEL_VARIANT_PDF) && $prodser->isVariant()) {
$libelleproduitservice = $desc;
} else {
$libelleproduitservice .= $desc;
$libelleproduitservice = dol_concatdesc($libelleproduitservice, $desc);
}
}
}
} else {
$libelleproduitservice .= $desc;
$libelleproduitservice = dol_concatdesc($libelleproduitservice, $desc);
}
}
}