Merge branch 'QA_5_2'

This commit is contained in:
William Desportes 2025-01-17 23:08:13 +01:00
commit 0893fc9dc1
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
4 changed files with 5 additions and 3 deletions

View File

@ -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

View File

@ -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)

View File

@ -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>

View File

@ -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>