remove extra space

This commit is contained in:
Marc Delisle
2002-07-08 11:44:57 +00:00
parent 6b53a1c9a3
commit 47cc6c0ffc
2 changed files with 4 additions and 1 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-07-08 Marc Delisle <lem9@users.sourceforge.net>
* libraries/display_tbl.lib.php3: bug 577645: extra space in the cell
2002-07-07 Alexander M. Turek <rabus@users.sourceforge.net>
* libraries/common.lib.php3: Forgot a <meta /> tag in the config file error
message.

View File

@@ -1084,7 +1084,7 @@ if (!defined('PMA_DISPLAY_TBL_LIB_INCLUDED')){
} else {
$vertical_display['data'][$row_no][$i] .= $row[$pointer];
}
$vertical_display['data'][$row_no][$i] .= ' </td>' . "\n";
$vertical_display['data'][$row_no][$i] .= '</td>' . "\n";
} else {
$vertical_display['data'][$row_no][$i] = ' <td valign="top" bgcolor="' . $bgcolor . '">&nbsp;</td>' . "\n";
}