diff --git a/adminer/include/adminer.inc.php b/adminer/include/adminer.inc.php index 8dbc44fb..4b9bec0c 100644 --- a/adminer/include/adminer.inc.php +++ b/adminer/include/adminer.inc.php @@ -335,7 +335,8 @@ focus(qs('#username')); foreach ($indexes as $i => $index) { if ($index["type"] == "FULLTEXT") { echo "(" . implode(", ", array_map('h', $index["columns"])) . ") AGAINST"; - echo " "; + echo " "; + echo ""; echo checkbox("boolean[$i]", 1, isset($_GET["boolean"][$i]), "BOOL"); echo "
\n"; } @@ -365,7 +366,7 @@ focus(qs('#username')); $i = 0; foreach ((array) $_GET["order"] as $key => $val) { if ($val != "") { - echo "
" . select_input(" name='order[$i]' onchange='selectFieldChange.call(this);'", $columns, $val); + echo "
" . select_input(" name='order[$i]'", $columns, $val, "selectFieldChange"); echo checkbox("desc[$i]", 1, isset($_GET["desc"][$key]), lang('descending')) . "
\n"; $i++; } @@ -381,7 +382,8 @@ focus(qs('#username')); */ function selectLimitPrint($limit) { echo "
" . lang('Limit') . "
"; //
for easy styling - echo ""; + echo ""; + echo ""; echo "
\n"; }