From af1ad47a64b5f2d5ff2ba94dfa1d8890c0139cf8 Mon Sep 17 00:00:00 2001 From: Jakub Vrana Date: Fri, 12 Jan 2018 22:29:11 +0100 Subject: [PATCH] Return false from editingMoveRow() --- adminer/include/editing.inc.php | 6 +++--- adminer/static/editing.js | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/adminer/include/editing.inc.php b/adminer/include/editing.inc.php index 9f27dd40..8ce21633 100644 --- a/adminer/include/editing.inc.php +++ b/adminer/include/editing.inc.php @@ -279,9 +279,9 @@ echo checkbox("fields[$i][has_default]", 1, $field["has_default"], "", "", "", " "; echo (support("move_col") ? - " " - . " " - . " " + " " + . " " + . " " : ""); echo ($orig == "" || support("drop_col") ? "" : ""); echo "\n"; diff --git a/adminer/static/editing.js b/adminer/static/editing.js index 4e979ba8..b0cbb517 100644 --- a/adminer/static/editing.js +++ b/adminer/static/editing.js @@ -211,7 +211,7 @@ function editingNameChange() { /** Add table row for next field * @param boolean -* @return boolean +* @return boolean false * @this HTMLInputElement */ function editingAddRow(focus) { @@ -249,7 +249,7 @@ function editingAddRow(focus) { } added += '0'; rowCount++; - return true; + return false; } /** Remove table row for field @@ -266,18 +266,18 @@ function editingRemoveRow(name) { /** Move table row for field * @param boolean direction to move row, true for up or false for down -* @return boolean +* @return boolean false for success * @this HTMLInputElement */ function editingMoveRow(dir){ var row = parentTag(this, 'tr'); if (!('nextElementSibling' in row)) { - return false; + return true; } row.parentNode.insertBefore(row, dir ? row.previousElementSibling : row.nextElementSibling ? row.nextElementSibling.nextElementSibling : row.parentNode.firstChild); - return true; + return false; } var lastType = '';