diff --git a/ChangeLog b/ChangeLog index 58d67e503..92bc2df2f 100755 --- a/ChangeLog +++ b/ChangeLog @@ -5,6 +5,10 @@ phpMyAdmin - Changelog $Id$ $Source$ +2003-08-28 Michal Cihar + * libraries/display_export.lib.php3: Allow xml to be also default export + (bug #796706). + 2003-08-27 Marc Delisle * tbl_relation.php3: User forgot to define an index on the master table before adding a foreign key constraint: trap the error, warn the user diff --git a/libraries/display_export.lib.php3 b/libraries/display_export.lib.php3 index 4d0a128fd..0bf893fac 100644 --- a/libraries/display_export.lib.php3 +++ b/libraries/display_export.lib.php3 @@ -23,6 +23,7 @@ function PMA_exportIsActive($what, $val) { /> - + + +

@@ -370,6 +373,10 @@ if ($cfgRelation['mimework']) { } else if (getElement('radio_dump_sql').checked) { getElement('sql_options').style.display = 'block'; + + + } else if (getElement('radio_dump_xml').checked) { + getElement('none_options').style.display = 'block'; } else if (getElement('radio_dump_csv').checked) { getElement('csv_options').style.display = 'block';