From d22a73ca3520ce33528f1bd597d2bffa7eb65123 Mon Sep 17 00:00:00 2001 From: duergner Date: Wed, 10 Sep 2003 19:18:44 +0000 Subject: [PATCH] some little 'errors' corrected --- lam/lib/pdf.inc | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/lam/lib/pdf.inc b/lam/lib/pdf.inc index 2a53b8f4..c578f5d9 100644 --- a/lam/lib/pdf.inc +++ b/lam/lib/pdf.inc @@ -69,7 +69,7 @@ function createUserPDF($accounts) { $pdfFile->setFont("times","B",10); $pdfFile->Cell(50,5,$account->personal_street,0,1,"L",0); $pdfFile->setFont("times","",10); - $pdfFile->Cell(50,5,_("Postal code") . "::",0,0,"R",0); + $pdfFile->Cell(50,5,_("Postal code") . ":",0,0,"R",0); $pdfFile->setFont("times","B",10); $pdfFile->Cell(50,5,$account->personal_postalCode,0,1,"L",0); $pdfFile->setFont("times","",10); @@ -152,6 +152,10 @@ function createUserPDF($accounts) { $pdfFile->Write(5,"- " . _("Windows User Settings") . ":"); $pdfFile->Ln(6); $pdfFile->setFont("times","",10); + $pdfFile->Cell(50,5,_("Username") . ":",0,0,"R",0); + $pdfFile->setFont("times","B",10); + $pdfFile->Cell(50,5,$account->general_username,0,1,"L",0); + $pdfFile->setFont("times","",10); if($account->smb_password_no == "1") { $pdfFile->setFont("times","",10); $pdfFile->Cell(50,5,_("Windows password") . ":",0,0,"R",0); @@ -191,7 +195,7 @@ function createUserPDF($accounts) { $pdfFile->setFont("times","B",10); $pdfFile->Cell(50,5,$account->smb_smbuserworkstations,0,1,"L",0); $pdfFile->setFont("times","",10); - $pdfFile->Cell(50,5,_("Windows home directory") . "::",0,0,"R",0); + $pdfFile->Cell(50,5,_("Windows home directory") . ":",0,0,"R",0); $pdfFile->setFont("times","B",10); $pdfFile->Cell(50,5,$account->smb_home,0,1,"L",0); $pdfFile->setFont("times","",10);