diff --git a/adminer/select.inc.php b/adminer/select.inc.php index 1711d6f1..21e3e2ac 100644 --- a/adminer/select.inc.php +++ b/adminer/select.inc.php @@ -235,7 +235,7 @@ if (!$columns) { $backward_keys = $adminer->backwardKeys($TABLE, $table_name); echo "
" . lang('edit') . "";
+ echo "| " . lang('edit') . "");
$names = array();
$functions = array();
reset($select);
@@ -267,7 +267,7 @@ if (!$columns) {
foreach ($unique_array as $key => $val) {
$unique_idf .= "&" . (isset($val) ? urlencode("where[" . bracket_escape($key) . "]") . "=" . urlencode($val) : "null%5B%5D=" . urlencode($key));
}
- echo " | " . checkbox("check[]", substr($unique_idf, 1), in_array(substr($unique_idf, 1), (array) $_POST["check"]), "", "this.form['all'].checked = false; formUncheck('all-page');") . (count($select) != count($group) || information_schema(DB) ? '' : " " . lang('edit') . "");
+ echo " | " . checkbox("check[]", substr($unique_idf, 1), in_array(substr($unique_idf, 1), (array) $_POST["check"]), "", "this.form['all'].checked = false; formUncheck('all-page');") . (count($group) < count($select) || information_schema(DB) ? "" : " " . lang('edit') . ""));
foreach ($row as $key => $val) {
if (isset($names[$key])) {
$field = $fields[$key];
| |