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 = '
';
$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 = '';
+$checkall_url = 'server_export.php?'
+ . PMA_generate_common_url()
+ . '&goto=db_export.php';
+
+$multi_values = '';
+$multi_values .= '
' . $strSelectAll . '
+ /
+
' . $strUnselectAll . '';
+
+$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';