Display SQL export after saving file on server (bug #989657).

This commit is contained in:
Michal Čihař
2004-07-15 14:09:23 +00:00
parent 18fdcca38a
commit 1cef835c05
2 changed files with 5 additions and 0 deletions

View File

@@ -8,6 +8,8 @@ $Source$
2004-07-15 Michal Čihař <michal@cihar.com> 2004-07-15 Michal Čihař <michal@cihar.com>
* tbl_properties_export.php: Fix export of queries with empty WHERE clause * tbl_properties_export.php: Fix export of queries with empty WHERE clause
(bug #990330). (bug #990330).
* libraries/display_export.lib.php: Display SQL export after saving file
on server (bug #989657).
2004-07-15 Marc Delisle <lem9@users.sourceforge.net> 2004-07-15 Marc Delisle <lem9@users.sourceforge.net>
* tbl_change.php: bug 990959, undefined index for DATETIME * tbl_change.php: bug 990959, undefined index for DATETIME

View File

@@ -45,6 +45,9 @@ if ($export_type == 'server') {
if (!isset($single_table)) { if (!isset($single_table)) {
$hide_structure = true; $hide_structure = true;
$hide_sql = true; $hide_sql = true;
} else {
// just to keep this value for possible next display of this form after saving on server
echo ' <input type="hidden" name="single_table" value="TRUE" />';
} }
} }
echo ' <input type="hidden" name="export_type" value="' . $export_type . '" />'; echo ' <input type="hidden" name="export_type" value="' . $export_type . '" />';