From 09a32b1c1b32eddc43b338570e183232c07d05d1 Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Tue, 5 Jun 2001 14:20:12 +0000 Subject: [PATCH] Quote Comment field --- ChangeLog | 3 +++ tbl_printview.php3 | 2 +- tbl_properties.php3 | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/ChangeLog b/ChangeLog index 0866e36c5..28c424e8b 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,9 @@ phpMyAdmin - Changelog $Id$ $Source$ +2001-06-05 Marc Delisle + * tbl_properties, tbl_printview: quote Comment field + 2001-06-04 Marc Delisle * tbl_change, tbl_replace: SaveAsNewRow diff --git a/tbl_printview.php3 b/tbl_printview.php3 index c9b7086c1..6a34a7bc2 100755 --- a/tbl_printview.php3 +++ b/tbl_printview.php3 @@ -22,7 +22,7 @@ if(MYSQL_MAJOR_VERSION == "3.23") $row = mysql_fetch_array($result); if(!empty($row["Comment"])) { - echo "$strTableComments: $row[Comment]"; + echo "$strTableComments: " . $row['Comment']; } } diff --git a/tbl_properties.php3 b/tbl_properties.php3 index c34a07c2a..c00135b2c 100755 --- a/tbl_properties.php3 +++ b/tbl_properties.php3 @@ -31,7 +31,7 @@ if(MYSQL_MAJOR_VERSION == "3.23") "; + echo "$strTableComments: "; //BEGIN - Table Type - 2 May 2001 - Robbat2 if(isset($submittype))