From 429f9e8e7ce4085b0f0b4fb6c63e242335e404ae Mon Sep 17 00:00:00 2001 From: Marc Delisle Date: Sun, 22 Jul 2007 17:07:18 +0000 Subject: [PATCH] Gui/export: Select All/Unselect All over the choices, thanks to Florian Schmitz --- ChangeLog | 2 ++ db_export.php | 22 +++++++++++----------- server_export.php | 23 +++++++++++------------ 3 files changed, 24 insertions(+), 23 deletions(-) diff --git a/ChangeLog b/ChangeLog index 776e1fe8a..48c069e98 100644 --- a/ChangeLog +++ b/ChangeLog @@ -86,6 +86,8 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA + [privileges] Support password hashing on the Edit Privileges interface - bug #1755339 Warn about rename dataase actually being copy/delete - bug #1746921 Left frame shrinks on db change, thanks to Juergen Wind ++ [gui] Export: Select All/Unselect All over the choices, + thanks to Florian Schmitz 2.10.3.0 (2007-07-20) diff --git a/db_export.php b/db_export.php index e8c4de49b..89bce317e 100644 --- a/db_export.php +++ b/db_export.php @@ -32,7 +32,16 @@ if ($num_tables < 1) { exit; } // end if -$multi_values = '
'; $multi_values .= "\n"; foreach ($tables as $each_table) { @@ -54,16 +63,7 @@ foreach ($tables as $each_table) { . str_replace(' ', ' ', $table_html) . '' . "\n"; } // end for $multi_values .= "\n"; -$multi_values .= '
'; - -$checkall_url = 'db_export.php?' - . PMA_generate_common_url($db) - . '&goto=db_export.php'; - -$multi_values .= '
- ' . $strSelectAll . ' - / - ' . $strUnselectAll . ''; +$multi_values .= '
'; $export_type = 'database'; require_once './libraries/display_export.lib.php'; diff --git a/server_export.php b/server_export.php index 45a405963..7505710d7 100644 --- a/server_export.php +++ b/server_export.php @@ -18,7 +18,16 @@ $js_to_run = 'functions.js'; require './libraries/server_links.inc.php'; $export_page_title = $strViewDumpDatabases . "\n"; -$multi_values = '
'; $multi_values .= "\n"; foreach ($GLOBALS['PMA_List_Database']->items as $current_db) { @@ -31,17 +40,7 @@ foreach ($GLOBALS['PMA_List_Database']->items as $current_db) { $multi_values .= ' ' . "\n"; } // end while $multi_values .= "\n"; -$multi_values .= '
'; - -$checkall_url = 'server_export.php?' - . PMA_generate_common_url() - . '&goto=db_export.php'; - -$multi_values .= '
- ' . $strSelectAll . ' - / - ' . $strUnselectAll . ' -

'; +$multi_values .= '
'; $export_type = 'server'; require_once './libraries/display_export.lib.php';