From d81eb3d595d9fedf8ca149ec5d092e1a3d81b05a Mon Sep 17 00:00:00 2001 From: Laurent Destailleur Date: Mon, 9 Aug 2004 19:37:04 +0000 Subject: [PATCH] =?UTF-8?q?Fix:=20Si=20la=20variable=20FAC=5FPDF=5FLOGO=20?= =?UTF-8?q?est=20d=E9finie=20=E0=20un=20fichier=20logo=20qui=20n'existe=20?= =?UTF-8?q?pas,=20la=20g=E9n=E9ration=20de=20la=20facture=20crabe=20se=20t?= =?UTF-8?q?erminait=20avec=20une=20erreur=20impropre.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- htdocs/includes/modules/facture/pdf_crabe.modules.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/htdocs/includes/modules/facture/pdf_crabe.modules.php b/htdocs/includes/modules/facture/pdf_crabe.modules.php index 0e54bf1cb95..28ded4dfc7e 100644 --- a/htdocs/includes/modules/facture/pdf_crabe.modules.php +++ b/htdocs/includes/modules/facture/pdf_crabe.modules.php @@ -503,8 +503,8 @@ Class pdf_crabe { $pdf->Image(FAC_PDF_LOGO, 10, 5, 0, 24, 'PNG'); } else { - $pdf->SetTextColor(150,0,0); - $pdf->SetFont('Arial','B',10); + $pdf->SetTextColor(200,0,0); + $pdf->SetFont('Arial','B',8); $pdf->MultiCell(80, 6, "Logo file '".FAC_PDF_LOGO."' was not found", 0, 'L'); } }