fixed bug #1436058 Notices while browsing table
This commit is contained in:
@@ -6,7 +6,7 @@ $Id$
|
|||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
2006-02-21 Michal Čihař <michal@cihar.com>
|
2006-02-21 Michal Čihař <michal@cihar.com>
|
||||||
* scripts/setup.php:
|
* scripts/setup.php:
|
||||||
- Various bug fixes (bug #1435700, bug #1435806, undefined indexes).
|
- Various bug fixes (bug #1435700, bug #1435806, undefined indexes).
|
||||||
- XHTML fixes (patch #1435772, thanks to Matt LaPlante - cyberdog3k).
|
- XHTML fixes (patch #1435772, thanks to Matt LaPlante - cyberdog3k).
|
||||||
* libraries/export/sql.php: New line before values (RFE #1435919).
|
* libraries/export/sql.php: New line before values (RFE #1435919).
|
||||||
@@ -34,6 +34,8 @@ $Source$
|
|||||||
* libraries/relation.lib.php:
|
* libraries/relation.lib.php:
|
||||||
check if $cfg['Server']['pmadb'] really exists and is selectable,
|
check if $cfg['Server']['pmadb'] really exists and is selectable,
|
||||||
minor tweaks and formating
|
minor tweaks and formating
|
||||||
|
* libraries/common.lib.php PMA_getUvaCondition():
|
||||||
|
fixed bug #1436058 Notices while browsing table
|
||||||
|
|
||||||
2006-02-20 Marc Delisle <lem9@users.sourceforge.net>
|
2006-02-20 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
### 2.8.0-rc1 released from QA_2_8 branch
|
### 2.8.0-rc1 released from QA_2_8 branch
|
||||||
|
@@ -2204,7 +2204,7 @@ window.parent.updateTableTitle('<?php echo $uni_tbl; ?>', '<?php echo PMA_jsForm
|
|||||||
$meta = $fields_meta[$i];
|
$meta = $fields_meta[$i];
|
||||||
|
|
||||||
// do not use an alias in a condition
|
// do not use an alias in a condition
|
||||||
if (! strlen($meta->orgname)) {
|
if (! isset($meta->orgname) || ! strlen($meta->orgname)) {
|
||||||
$meta->orgname = $meta->name;
|
$meta->orgname = $meta->name;
|
||||||
|
|
||||||
if (isset($GLOBALS['analyzed_sql'][0]['select_expr'])
|
if (isset($GLOBALS['analyzed_sql'][0]['select_expr'])
|
||||||
|
Reference in New Issue
Block a user