bug 608459 syntax coloring

This commit is contained in:
Marc Delisle
2002-09-19 16:53:20 +00:00
parent c5f8e5cb8e
commit 8b0cf94ea1
2 changed files with 5 additions and 1 deletions

View File

@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
$Id$
$Source$
2002-09-19 Marc Delisle <lem9@users.sourceforge.net>
* libraries/sqlparser.lib.php3, bug 608459: syntax coloring and
alias without AS
2002-09-18 Lo<4C>c Chapeaux <lolo@phpheaven.net>
* tbl_printview.php3: fix for #611499 (empty comment column)
* libraries/common.lib.php3: fix for #593971 (common.lib.php3 js error)

View File

@@ -764,7 +764,7 @@ if (!defined('PMA_SQP_LIB_INCLUDED')) {
$after = '';
$before = '';
}
if ($typearr[3] == 'alpha_columnType') {
if (($typearr[3] == 'alpha_columnType') || ($typearr[3] == 'alpha_identifier')){
$after .= ' ';
}
break;