Skip to content

Commit

Permalink
Fix: Removed nb of pages
Browse files Browse the repository at this point in the history
  • Loading branch information
eldy committed Aug 31, 2011
1 parent d4e3924 commit 6a2b33a
Showing 1 changed file with 7 additions and 2 deletions.
Expand Up @@ -310,8 +310,13 @@ function _pagefoot(&$pdf, $object, $outputlangs)
$pdf->MultiCell(100, 3, $outputlangs->transnoentities("ToAndDate") , 0, 'C');
$pdf->SetXY(120,-23);
$pdf->MultiCell(100, 3, $outputlangs->transnoentities("NameAndSignature") , 0, 'C');
$pdf->SetXY(-10,-10);
$pdf->MultiCell(10, 3, $pdf->PageNo().'/'.$pdf->getAliasNbPages(), 0, 'R');

// Show page nb only on iso languages (so default Helvetica font)
//if (pdf_getPDFFont($outputlangs) == 'Helvetica')
//{
// $pdf->SetXY(-10,-10);
// $pdf->MultiCell(11, 2, $pdf->PageNo().'/'.$pdf->getAliasNbPages(), 0, 'R', 0);
//}
}


Expand Down

0 comments on commit 6a2b33a

Please sign in to comment.