some little 'errors' corrected

This commit is contained in:
duergner 2003-09-10 19:18:44 +00:00
parent fb1c13d2cc
commit d22a73ca35
1 changed files with 6 additions and 2 deletions

View File

@ -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);