Fix: Longueur zone texte libre incorrecte.

This commit is contained in:
Laurent Destailleur 2014-08-13 14:44:41 +02:00
parent b2638625c9
commit 5026320fec

View File

@ -795,7 +795,7 @@ function pdf_pagefoot(&$pdf,$outputlangs,$paramfreetext,$fromcompany,$marge_bass
if ($line) // Free text
{
$pdf->SetXY($dims['lm'],-$posy);
$pdf->MultiCell($width, 3, $line, 0, $align, 0);
$pdf->MultiCell(0, 3, $line, 0, $align, 0);
$posy-=$freetextheight;
}