]> git.joonet.de Git - adminer.git/commitdiff
Add forgotten format
authorjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Thu, 27 Aug 2009 14:14:19 +0000 (14:14 +0000)
committerjakubvrana <jakubvrana@7c3ca157-0c34-0410-bff1-cbf682f78f5c>
Thu, 27 Aug 2009 14:14:19 +0000 (14:14 +0000)
git-svn-id: https://adminer.svn.sourceforge.net/svnroot/adminer/trunk@1029 7c3ca157-0c34-0410-bff1-cbf682f78f5c

adminer/dump.inc.php

index f3aa605261394627853fe1e88c6f0150d79eb621..781e4c0f1fc4a6a55ef8b9c4f2161a3be0d6f47e 100644 (file)
@@ -162,6 +162,7 @@ if ($dbh->server_info >= 5) {
        $table_style[] = 'CREATE+ALTER';
 }
 echo "<tr><th>" . lang('Output') . "<td><input type='hidden' name='token' value='$token'>$dump_output\n"; // token is not needed but checked in bootstrap for all POST data
+echo "<tr><th>" . lang('Format') . "<td>$dump_format\n";
 echo "<tr><th>" . lang('Database') . "<td><select name='db_style'>" . optionlist($db_style, (strlen($_GET["db"]) ? '' : 'CREATE')) . "</select>\n";
 echo "<tr><th>" . lang('Tables') . "<td><select name='table_style'>" . optionlist($table_style, 'DROP+CREATE') . "</select>\n";
 echo "<tr><th>" . lang('Data') . "<td><select name='data_style'>" . optionlist($data_style, 'INSERT') . "</select>\n";