bug 909752

This commit is contained in:
Marc Delisle
2004-03-05 17:58:10 +00:00
parent 0cb13cb230
commit e22f80a3bf
2 changed files with 6 additions and 0 deletions

View File

@@ -5,6 +5,9 @@ phpMyAdmin - Changelog
$Id$ $Id$
$Source$ $Source$
2004-03-05 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sqlparser.lib.php: bug 909752, floating point digit
2004-03-03 Marc Delisle <lem9@users.sourceforge.net> 2004-03-03 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php, tbl_replace_fields.php: bug 907510, invalid * tbl_change.php, tbl_replace_fields.php: bug 907510, invalid
escaping of + in ENUM escaping of + in ENUM

View File

@@ -1903,6 +1903,9 @@ if ($is_minimum_common == FALSE) {
if ($infunction && $typearr[3] == 'punct_bracket_close_round') { if ($infunction && $typearr[3] == 'punct_bracket_close_round') {
$after .= ' '; $after .= ' ';
} }
if ($typearr[1] == 'alpha_columnAttrib') {
$before .= ' ';
}
break; break;
case 'alpha_variable': case 'alpha_variable':
$after = ' '; $after = ' ';