bug #1671403 [parser] using "client" as table name

This commit is contained in:
Marc Delisle
2007-03-04 14:02:52 +00:00
parent ff86b207e0
commit 460a3c9f2f
2 changed files with 10 additions and 19 deletions

View File

@@ -5,8 +5,14 @@ phpMyAdmin - ChangeLog
$Id$ $Id$
$HeadURL$ $HeadURL$
2007-03-02 Marc Delisle <lem9@users.sourceforge.net> 2.11
* server_status.php: use PMA_getenv('PHP_SELF'), thanks to Sebastian ====
- bug #1671403 [parser] using "client" as table name
. [general] use PMA_getenv('PHP_SELF')
. [config] set $cfg['Servers'][$i]['ssl'] default value to false,
we got reports from some users having problems with the default value of true
- bug #1659176 [general] memory error displaying a table with large BLOBs
- bug #1668662 [install] can create the new pma_designer_coords table
2007-03-02 Sebastian Mendel <cybot_tm@users.sourceforge.net> 2007-03-02 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* libraries/common.lib.php: bug #1672379 Call to undefined function PMA_removeCookie() * libraries/common.lib.php: bug #1672379 Call to undefined function PMA_removeCookie()
@@ -14,19 +20,6 @@ $HeadURL$
2007-03-01 Sebastian Mendel <cybot_tm@users.sourceforge.net> 2007-03-01 Sebastian Mendel <cybot_tm@users.sourceforge.net>
* libraries/common.lib.php: bug #1671813 CVE-2006-1549 deep recursion crash * libraries/common.lib.php: bug #1671813 CVE-2006-1549 deep recursion crash
2007-02-28 Marc Delisle <lem9@users.sourceforge.net>
* libraries/config.default.php: set $cfg['Servers'][$i]['ssl'] default
value to false, we got reports from some users having problems with the
default value of true
2007-02-27 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php: bug #1659176, memory error displaying
a table with large BLOBs
2007-02-26 Marc Delisle <lem9@users.sourceforge.net>
* scripts/upgrade_tables_mysql_4_1_2+.sql: bug #1668662,
can create the new pma_designer_coords table
2007-02-25 Marc Delisle <lem9@users.sourceforge.net> 2007-02-25 Marc Delisle <lem9@users.sourceforge.net>
* libraries/common.lib.php: bug #1667466, undefined variable when * libraries/common.lib.php: bug #1667466, undefined variable when
export + save on server export + save on server

View File

@@ -423,7 +423,6 @@ $PMA_SQPdata_reserved_word = array (
'CHARSET', 'CHARSET',
'CHECK', 'CHECK',
'CHECKSUM', 'CHECKSUM',
'CLIENT',
'COLLATE', 'COLLATE',
'COLLATION', 'COLLATION',
'COLUMN', 'COLUMN',
@@ -681,7 +680,7 @@ $PMA_SQPdata_reserved_word = array (
* *
* @global integer MySQL reserved words count * @global integer MySQL reserved words count
*/ */
$PMA_SQPdata_reserved_word_cnt = 280; $PMA_SQPdata_reserved_word_cnt = 279;
/** /**
* words forbidden to be used as column or table name wihtout quotes * words forbidden to be used as column or table name wihtout quotes
@@ -740,7 +739,6 @@ $PMA_SQPdata_forbidden_word = array (
'CHECK', 'CHECK',
'CHECKSUM', 'CHECKSUM',
'CIPHER', 'CIPHER',
'CLIENT',
'CLOSE', 'CLOSE',
'COLLATE', 'COLLATE',
'COLLATION', 'COLLATION',
@@ -1180,7 +1178,7 @@ $PMA_SQPdata_forbidden_word = array (
* *
* @global integer MySQL forbidden words count * @global integer MySQL forbidden words count
*/ */
$PMA_SQPdata_forbidden_word_cnt = 484; $PMA_SQPdata_forbidden_word_cnt = 483;
/** /**
* the MySQL column/data types * the MySQL column/data types