diff --git a/ChangeLog b/ChangeLog index 0ee1d6d26..4117423b4 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-07-08 Marc Delisle + * libraries/display_tbl.lib.php3: bug 577645: extra space in the cell + 2002-07-07 Alexander M. Turek * libraries/common.lib.php3: Forgot a tag in the config file error message. diff --git a/libraries/display_tbl.lib.php3 b/libraries/display_tbl.lib.php3 index 662bac449..2c982b257 100644 --- a/libraries/display_tbl.lib.php3 +++ b/libraries/display_tbl.lib.php3 @@ -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] .= ' ' . "\n"; + $vertical_display['data'][$row_no][$i] .= '' . "\n"; } else { $vertical_display['data'][$row_no][$i] = '  ' . "\n"; }