Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/phpmyadmin/phpmyadmin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMohammad Reza Mansouri <beekalam@gmail.com>2018-11-03 23:53:17 +0300
committerMaurĂ­cio Meneghini Fauth <mauriciofauth@gmail.com>2018-11-03 23:53:17 +0300
commit9e12c610559a1a9c7f3a3227fe002188f44a6fef (patch)
tree271758af2c60c55b4c7c3cda876f58fbe7e2810b /libraries
parentd8a319ad17d28625b228cfb411c08dbfbe12593e (diff)
consistent go button position (#14680)
* moves Go button to right on edit and insert tabs. * moves Go button to right on import and export tabs. Signed-off-by: beekalam <beekalam@gmail.com>
Diffstat (limited to 'libraries')
-rw-r--r--libraries/classes/InsertEdit.php8
1 files changed, 4 insertions, 4 deletions
diff --git a/libraries/classes/InsertEdit.php b/libraries/classes/InsertEdit.php
index 93f55f2b4c..5d2f922ae5 100644
--- a/libraries/classes/InsertEdit.php
+++ b/libraries/classes/InsertEdit.php
@@ -1919,12 +1919,12 @@ class InsertEdit
)
. '</td>'
. '<td colspan="3" class="right vmiddle">'
- . '<input type="submit" class="control_at_footer" value="' . __('Go') . '"'
- . ' tabindex="' . ($tabindex + $tabindex_for_value + 6) . '" id="buttonYes" />'
. '<input type="button" class="preview_sql" value="' . __('Preview SQL') . '"'
- . ' tabindex="' . ($tabindex + $tabindex_for_value + 7) . '" />'
+ . ' tabindex="' . ($tabindex + $tabindex_for_value + 6) . '" />'
. '<input type="reset" class="control_at_footer" value="' . __('Reset') . '"'
- . ' tabindex="' . ($tabindex + $tabindex_for_value + 8) . '" />'
+ . ' tabindex="' . ($tabindex + $tabindex_for_value + 7) . '" />'
+ . '<input type="submit" class="control_at_footer" value="' . __('Go') . '"'
+ . ' tabindex="' . ($tabindex + $tabindex_for_value + 8) . '" id="buttonYes" />'
. '</td>';
}