Skip to content

Commit 0893fc9

Browse files
committed
Merge branch 'QA_5_2'
2 parents 699760c + 99f38f5 commit 0893fc9

4 files changed

Lines changed: 5 additions & 3 deletions

File tree

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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

167168
5.2.1 (2023-02-07)
168169
- issue #17522 Fix case where the routes cache file is invalid

docs/intro.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,8 @@ Shortcut keys
4848

4949
Currently 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)

resources/templates/database/create_table.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
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>

resources/templates/server/databases/index.twig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
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>

0 commit comments

Comments
 (0)