diff --git a/adminer/select.inc.php b/adminer/select.inc.php index 5a3cf6d1..328602d3 100644 --- a/adminer/select.inc.php +++ b/adminer/select.inc.php @@ -383,7 +383,10 @@ if (!$columns && support("table")) { } $unique_idf .= "&" . ($val !== null ? urlencode("where[" . bracket_escape($key) . "]") . "=" . urlencode($val) : "null%5B%5D=" . urlencode($key)); } - echo "" . (!$group && $select ? "" : "" . checkbox("check[]", substr($unique_idf, 1), in_array(substr($unique_idf, 1), (array) $_POST["check"]), "", "this.form['all'].checked = false; formUncheck('all-page');") . ($is_group || information_schema(DB) ? "" : " " . lang('edit') . "")); + echo "" . (!$group && $select ? "" : "" + . checkbox("check[]", substr($unique_idf, 1), in_array(substr($unique_idf, 1), (array) $_POST["check"]), "", "this.form['all'].checked = false; formUncheck('all-page');") + . ($is_group || information_schema(DB) ? "" : " " . lang('edit') . "") + ); foreach ($row as $key => $val) { if (isset($names[$key])) { diff --git a/adminer/static/default.css b/adminer/static/default.css index 898f2724..41835061 100644 --- a/adminer/static/default.css +++ b/adminer/static/default.css @@ -62,6 +62,7 @@ input.wayoff { left: -1000px; position: absolute; } .links a { white-space: nowrap; margin-right: 20px; } .logout { margin-top: .5em; position: absolute; top: 0; right: 0; } .loadmore { margin-left: 1ex; } +/* .edit used in designs */ #menu { position: absolute; margin: 10px 0 0; padding: 0 0 30px 0; top: 2em; left: 0; width: 19em; } #menu p, #tables { padding: .8em 1em; margin: 0; border-bottom: 1px solid #ccc; } #tables li{ list-style: none; }