diff --git a/ChangeLog b/ChangeLog index daa0ec8b7..2c332133c 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,8 @@ $Source$ 2002-02-23 Marc Delisle * tbl_replace.php3, bug 520242, records get inserted twice * swedish updates thanks to Björn T. Hallberg + * tbl_printview.php3, comments were not displayed, thanks to + Björn T. Hallberg 2002-02-22 Loïc Chapeaux * tbl_addfield.php3, lines 34-44; tbl_create.php3, lines 40-50: fixed php diff --git a/tbl_printview.php3 b/tbl_printview.php3 index 967e1616f..774649222 100755 --- a/tbl_printview.php3 +++ b/tbl_printview.php3 @@ -137,13 +137,12 @@ while (list($key, $table) = each($the_tables)) { /** - * Displays the comments of the table is MySQL >= 3.23 + * Displays the comments of the table if MySQL >= 3.23 */ if (!empty($show_comment)) { - echo $strTableComments . ' : ' . $row['Comment']; + echo $strTableComments . ' : ' . $show_comment . '

'; } - /** * Displays the table structure */