improved alignment

This commit is contained in:
Marc Delisle
2003-02-16 11:25:46 +00:00
parent 87a2561211
commit b243a1780e
2 changed files with 3 additions and 2 deletions

View File

@@ -9,6 +9,7 @@ $Source$
* sql.php3, libraries/sqlparser.lib.php3: new analyzer logic * sql.php3, libraries/sqlparser.lib.php3: new analyzer logic
for splitting the SELECT clauses, to solve almost all records for splitting the SELECT clauses, to solve almost all records
counting bugs counting bugs
* pdf_schema.php3: improved alignment, thanks to Maxime Delorme
2003-02-15 Alexander M. Turek <rabus@users.sourceforge.net> 2003-02-15 Alexander M. Turek <rabus@users.sourceforge.net>
* ANNOUNCE.txt: Prepared announcement for 2.4.0. Please feel free to correct * ANNOUNCE.txt: Prepared announcement for 2.4.0. Please feel free to correct

View File

@@ -1363,8 +1363,8 @@ function PMA_RT_DOC($alltables ){
$pdf->Cell(20,8,ucfirst($GLOBALS['strDefault']),1,0,'C'); $pdf->Cell(20,8,ucfirst($GLOBALS['strDefault']),1,0,'C');
$pdf->Cell(25,8,ucfirst($GLOBALS['strExtra']),1,0,'C'); $pdf->Cell(25,8,ucfirst($GLOBALS['strExtra']),1,0,'C');
$pdf->Cell(45,8,ucfirst($GLOBALS['strLinksTo']),1,0,'C'); $pdf->Cell(45,8,ucfirst($GLOBALS['strLinksTo']),1,0,'C');
$pdf->Cell(100,8,ucfirst($GLOBALS['strComments']),1,1,'C'); $pdf->Cell(112,8,ucfirst($GLOBALS['strComments']),1,1,'C');
$pdf->SetWidths(array(25,20,20,10,20,25,45,100)); $pdf->SetWidths(array(25,20,20,10,20,25,45,112));
} else { } else {
$pdf->Cell(20,8,ucfirst($GLOBALS['strField']),1,0,'C'); $pdf->Cell(20,8,ucfirst($GLOBALS['strField']),1,0,'C');
$pdf->Cell(20,8,ucfirst($GLOBALS['strType']),1,0,'C'); $pdf->Cell(20,8,ucfirst($GLOBALS['strType']),1,0,'C');