Add ChangeLog entry for #14829

- Removes whitespace inside textarea in columns_definitions/column_comment

Signed-off-by: Maurício Meneghini Fauth <mauriciofauth@gmail.com>
This commit is contained in:
Maurício Meneghini Fauth 2019-01-24 22:27:06 -02:00
parent 93f116d2ae
commit 7bc8382c84
2 changed files with 3 additions and 1 deletions

View File

@ -25,6 +25,7 @@ phpMyAdmin - ChangeLog
- issue #14633 Use Sass instead of PHP to compile CSS
- issue #14053 Fix missed padding on query results
- issue #14765 Add initial support for Bootstrap 4
- issue #14829 Change table column comment field from input to textarea
4.8.5 (not yet released)
- issue Developer debug data was saved to the PHP error log

View File

@ -1,5 +1,6 @@
<textarea id="field_{{ column_number }}_{{ ci - ci_offset }}"
rows="1"
name="field_comments[{{ column_number }}]"
maxlength="{{ max_length }}">{{ value|raw }}
maxlength="{{ max_length }}">
{{- value|raw -}}
</textarea>