diff --git a/adminer/dump.inc.php b/adminer/dump.inc.php
index 28e1f34f..d3e2d425 100644
--- a/adminer/dump.inc.php
+++ b/adminer/dump.inc.php
@@ -167,9 +167,9 @@ if (!isset($row["events"])) { // backwards compatibility
$row["triggers"] = $row["table_style"];
}
-echo "
";
- echo "" . html_select("source[" . (+$key) . "]", array(-1 => "") + $source, $val, ($j == count($row["source"]) - 1 ? "foreignAddRow.call(this);" : 1), "label-source");
- echo " | " . html_select("target[" . (+$key) . "]", $target, $row["target"][$key], 1, "label-target");
+ echo " | " . html_select("source[" . (+$key) . "]", array(-1 => "") + $source, $val, ($j == count($row["source"]) - 1 ? "foreignAddRow.call(this);" : ""), "label-source");
+ echo " | " . html_select("target[" . (+$key) . "]", $target, $row["target"][$key], "", "label-target");
$j++;
}
?>
diff --git a/adminer/include/functions.inc.php b/adminer/include/functions.inc.php
index 0ef1f71c..3daa9905 100644
--- a/adminer/include/functions.inc.php
+++ b/adminer/include/functions.inc.php
@@ -217,22 +217,29 @@ function optionlist($options, $selected = null, $use_keys = false) {
return $return;
}
+/** Generate HTML |