Skip to content

Commit

Permalink
Merge branch 'QA_5_2'
Browse files Browse the repository at this point in the history
  • Loading branch information
williamdes committed Jan 17, 2025
2 parents 699760c + 99f38f5 commit 0893fc9
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,7 @@ phpMyAdmin - ChangeLog
- issue #18852 Fix notification color scheme on the Bootstrap dark theme
- issue #14542 Show the query even if no results are found in the Table search
- issue #16936 Fixed import (e.g. ods) doesn't respect database default collation
- issue #19000 Disable autocomplete for the create table/db name inputs

5.2.1 (2023-02-07)
- issue #17522 Fix case where the routes cache file is invalid
Expand Down
3 changes: 2 additions & 1 deletion docs/intro.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ Shortcut keys

Currently phpMyAdmin supports following shortcuts:

* k - Toggle console
* k and CTRL+k - Toggle console
* CTRL+ALT+c - Toggle console
* h - Go to home page
* s - Open settings
* d + s - Go to database structure (Provided you are in database related page)
Expand Down
2 changes: 1 addition & 1 deletion resources/templates/database/create_table.twig
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="card-body row row-cols-lg-auto g-3">
<div class="col-12">
<label for="createTableNameInput" class="form-label">{{ t('Table name') }}</label>
<input type="text" class="form-control" name="table" id="createTableNameInput" maxlength="64">
<input autocomplete="off" type="text" class="form-control" name="table" id="createTableNameInput" maxlength="64">
</div>
<div class="col-12">
<label for="createTableNumFieldsInput" class="form-label">{{ t('Number of columns') }}</label>
Expand Down
2 changes: 1 addition & 1 deletion resources/templates/server/databases/index.twig
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
{% endif %}

<div class="col-12">
<input type="text" name="new_db" maxlength="64" class="form-control" value="
<input autocomplete="off" type="text" name="new_db" maxlength="64" class="form-control" value="
{{- database_to_create }}" id="text_create_db" placeholder="
{{- t('Database name') }}" aria-label="{{ t('Database name') }}" required>
</div>
Expand Down

0 comments on commit 0893fc9

Please sign in to comment.