Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHerman van Rink <rink@initfour.nl>2009-12-27 16:59:08 +0300
committerHerman van Rink <rink@initfour.nl>2009-12-27 16:59:08 +0300
commit195165c2ae6f42fa7f02fa44e7822d36b15968a6 (patch)
treec8bd3aaa889a30c8c0f1292a97aad6c2fbc463bf /db_export.php
parent20208dceb2bbf989c9081c55d2d1e30a42f6fe77 (diff)
Code cleanup
Diffstat (limited to 'db_export.php')
-rw-r--r--db_export.php6
1 files changed, 1 insertions, 5 deletions
diff --git a/db_export.php b/db_export.php
index 8d96e7cd7b..fda601cf62 100644
--- a/db_export.php
+++ b/db_export.php
@@ -52,11 +52,6 @@ if (!empty($selected_tbl) && empty($table_select)) {
}
foreach ($tables as $each_table) {
- // ok we show also views
- //if (is_null($each_table['Engine'])) {
- // Don't offer to export views yet.
- // continue;
- //}
if (! empty($unselectall)
|| (! empty($table_select) && !in_array($each_table['Name'], $table_select))) {
$is_selected = '';
@@ -68,6 +63,7 @@ foreach ($tables as $each_table) {
. $is_selected . '>'
. str_replace(' ', '&nbsp;', $table_html) . '</option>' . "\n";
} // end for
+
$multi_values .= "\n";
$multi_values .= '</select></div><br />';