diff --git a/ChangeLog b/ChangeLog index d9c157aa6..83989c233 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2002-07-14 Marc Delisle + * Documentation.html, db_details_exports.php3, tbl_properties_export.php3: + add a link to a new faq entry explaining some dump options + 2002-07-13 Marc Delisle * libraries/common.lib.php3: bug 580929: do not EXPLAIN if this is not a SELECT diff --git a/Documentation.html b/Documentation.html index e3e08a4bb..5c7e77bb5 100755 --- a/Documentation.html +++ b/Documentation.html @@ -2139,9 +2139,11 @@ $cfg['PmaAbsoluteUri'] = (!empty($_SERVER['HTTPS']) ? 'https' : 'http') . '://'

I want to understand some Export options.
"Complete inserts" adds the column names on every INSERT command, - for better documentation.
+ for better documentation (but resulting file is bigger).
"Extended inserts" provides a shorter dump file by using only - once the INSERT verb and the table name. + once the INSERT verb and the table name.
+ "Enclose table and field names with backquotes" ensures that + field and table names formed with special characters are protected.

[phpMyAdmin project]

diff --git a/db_details_export.php3 b/db_details_export.php3 index 92c466b24..6254dfdb0 100644 --- a/db_details_export.php3 +++ b/db_details_export.php3 @@ -162,8 +162,8 @@ if (function_exists('PMA_set_enc_form')) { - ' . $strDocu . ''; /** * Displays the footer */ diff --git a/tbl_properties_export.php3 b/tbl_properties_export.php3 index 2c1dad7bc..b11c3fa73 100755 --- a/tbl_properties_export.php3 +++ b/tbl_properties_export.php3 @@ -157,5 +157,7 @@ echo "\n"; * Displays the footer */ echo "\n"; +echo '' . $strDocu . '' . "\n"; + require('./footer.inc.php3'); ?>