Always hide import

This commit is contained in:
Jakub Vrana 2018-02-14 06:42:07 +01:00
parent 3f901cfe30
commit 8a94bc6f41

View file

@ -565,7 +565,7 @@ if (!$columns && support("table")) {
echo "<div>";
echo "<a href='#import'>" . lang('Import') . "</a>";
echo script("qsl('a').onclick = partial(toggle, 'import');", "");
echo "<span id='import'" . ($rows ? " class='hidden'" : "") . ">: ";
echo "<span id='import' class='hidden'>: ";
echo "<input type='file' name='csv_file'> ";
echo html_select("separator", array("csv" => "CSV,", "csv;" => "CSV;", "tsv" => "TSV"), $adminer_import["format"], 1); // 1 - select
echo " <input type='submit' name='import' value='" . lang('Import') . "'>";