bug 729517

This commit is contained in:
Marc Delisle
2003-04-30 16:07:50 +00:00
parent d983065d29
commit 3a3e67c546
2 changed files with 6 additions and 2 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2003-04-30 Marc Delisle <lem9@users.sourceforge.net>
* pdf_schema.php3, bug 729517, better comment output,
thanks to Maxime Delorme
2003-04-30 Michal Cihar <nijel@users.sourceforge.net> 2003-04-30 Michal Cihar <nijel@users.sourceforge.net>
* tbl_move_copy.php3: Better fix for #729416 (use INSERT IGNORE). * tbl_move_copy.php3: Better fix for #729416 (use INSERT IGNORE).

View File

@@ -474,8 +474,8 @@ function Row($data,$links)
$nb=0; $nb=0;
for($i=0;$i<count($data);$i++) for($i=0;$i<count($data);$i++)
$nb=max($nb,$this->NbLines($this->widths[$i],$data[$i])); $nb=max($nb,$this->NbLines($this->widths[$i],$data[$i]));
$il = 2.7; $il = $this->FontSize;
$h=$il*$nb+2; $h=($il+1)*$nb;
// page break if necessary // page break if necessary
$this->CheckPageBreak($h); $this->CheckPageBreak($h);
// draw the cells // draw the cells