From d745297bacfb6204ee329ca7ddbe143b3d1a0ea1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Thu, 28 Aug 2003 14:36:50 +0000 Subject: [PATCH] Allow xml to be also default export (bug #796706). --- ChangeLog | 4 ++++ libraries/display_export.lib.php3 | 9 ++++++++- 2 files changed, 12 insertions(+), 1 deletion(-) 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';