File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -163,6 +163,7 @@ phpMyAdmin - ChangeLog
163163- issue #18852 Fix notification color scheme on the Bootstrap dark theme
164164- issue #14542 Show the query even if no results are found in the Table search
165165- issue #16936 Fixed import (e.g. ods) doesn't respect database default collation
166+ - issue #19000 Disable autocomplete for the create table/db name inputs
166167
1671685.2.1 (2023-02-07)
168169- issue #17522 Fix case where the routes cache file is invalid
Original file line number Diff line number Diff line change @@ -48,7 +48,8 @@ Shortcut keys
4848
4949Currently phpMyAdmin supports following shortcuts:
5050
51- * k - Toggle console
51+ * k and CTRL+k - Toggle console
52+ * CTRL+ALT+c - Toggle console
5253* h - Go to home page
5354* s - Open settings
5455* d + s - Go to database structure (Provided you are in database related page)
Original file line number Diff line number Diff line change 44 <div class =" card-body row row-cols-lg-auto g-3" >
55 <div class =" col-12" >
66 <label for =" createTableNameInput" class =" form-label" >{{ t(' Table name' ) }}</label >
7- <input type =" text" class =" form-control" name =" table" id =" createTableNameInput" maxlength =" 64" >
7+ <input autocomplete = " off " type =" text" class =" form-control" name =" table" id =" createTableNameInput" maxlength =" 64" >
88 </div >
99 <div class =" col-12" >
1010 <label for =" createTableNumFieldsInput" class =" form-label" >{{ t(' Number of columns' ) }}</label >
Original file line number Diff line number Diff line change 1919 {% endif %}
2020
2121 <div class =" col-12" >
22- <input type =" text" name =" new_db" maxlength =" 64" class =" form-control" value ="
22+ <input autocomplete = " off " type =" text" name =" new_db" maxlength =" 64" class =" form-control" value ="
2323 {{- database_to_create }}" id =" text_create_db" placeholder ="
2424 {{- t(' Database name' ) }}" aria-label =" {{ t(' Database name' ) }}" required >
2525 </div >
You can’t perform that action at this time.
0 commit comments