Fix undefined variable when exporting relations (bug #1253457).
This commit is contained in:
@@ -5,6 +5,10 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$Source$
|
||||||
|
|
||||||
|
2005-08-08 Michal Čihař <michal@cihar.com>
|
||||||
|
* libraries/export/htmlword.php: Fix undefined variable when exporting
|
||||||
|
relations (bug #1253457).
|
||||||
|
|
||||||
2005-08-08 Marc Delisle <lem9@users.sourceforge.net>
|
2005-08-08 Marc Delisle <lem9@users.sourceforge.net>
|
||||||
* libraries/dbi/mysqli.dbi.lib.php: bug #1253453, using mysqli extension
|
* libraries/dbi/mysqli.dbi.lib.php: bug #1253453, using mysqli extension
|
||||||
with MySQL 4.0.x
|
with MySQL 4.0.x
|
||||||
|
@@ -280,6 +280,8 @@ function PMA_exportStructure($db, $table, $crlf, $error_url, $do_relation = fals
|
|||||||
$schema_insert .= '<td class="print">' . htmlspecialchars($row['Null'] == '' ? $GLOBALS['strNo'] : $GLOBALS['strYes']) . '</td>';
|
$schema_insert .= '<td class="print">' . htmlspecialchars($row['Null'] == '' ? $GLOBALS['strNo'] : $GLOBALS['strYes']) . '</td>';
|
||||||
$schema_insert .= '<td class="print">' . htmlspecialchars(isset($row['Default']) ? $row['Default'] : '') . '</td>';
|
$schema_insert .= '<td class="print">' . htmlspecialchars(isset($row['Default']) ? $row['Default'] : '') . '</td>';
|
||||||
|
|
||||||
|
$field_name = $row['Field'];
|
||||||
|
|
||||||
if ($do_relation && $have_rel) {
|
if ($do_relation && $have_rel) {
|
||||||
$schema_insert .= '<td class="print">' . (isset($res_rel[$field_name]) ? htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' (' . $res_rel[$field_name]['foreign_field'] . ')') : '') . '</td>';
|
$schema_insert .= '<td class="print">' . (isset($res_rel[$field_name]) ? htmlspecialchars($res_rel[$field_name]['foreign_table'] . ' (' . $res_rel[$field_name]['foreign_field'] . ')') : '') . '</td>';
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user