Skip to content

Commit

Permalink
Fix: Longueur zone texte libre incorrecte.
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Aug 13, 2014
1 parent b263862 commit 5026320
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion htdocs/core/lib/pdf.lib.php
Expand Up @@ -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;
}

Expand Down

0 comments on commit 5026320

Please sign in to comment.