From 9a1a9e72377e51cab239816a78c8783b1eddbb6f Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Wed, 9 Nov 2005 16:37:02 +0000 Subject: [PATCH] superscript 1 for Length/Values --- ChangeLog | 1 + tbl_properties.inc.php | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index c9aed229e8..531abce06d 100755 --- a/ChangeLog +++ b/ChangeLog @@ -8,6 +8,7 @@ $Source$ 2005-11-09 Marc Delisle * pdf_pages.php: bug #1245891, too large scaling in PDF schema * libraries/bookmark.lib.php: bug #1339184 (for bookmark insertion) + * tbl_properties.inc.php: superscript 1 for Length/Values 2005-11-09 Sebastian Mendel * server_databases.php, mysql_charsets-lib.php: diff --git a/tbl_properties.inc.php b/tbl_properties.inc.php index a53044225c..910cc1fcae 100644 --- a/tbl_properties.inc.php +++ b/tbl_properties.inc.php @@ -111,7 +111,7 @@ $content_cells = array(); $header_cells[] = $strField; $header_cells[] = $strType . ($GLOBALS['cfg']['ReplaceHelpImg'] ? PMA_showMySQLDocu('SQL-Syntax', 'Column_types') : '
' . PMA_showMySQLDocu('SQL-Syntax', 'Column_types') . ''); -$header_cells[] = $strLengthSet; +$header_cells[] = $strLengthSet . '1'; if (PMA_MYSQL_INT_VERSION >= 40100) { $header_cells[] = $strCollation; }