Merge branch 'QA_5_0' into 'master'

[ci skip]
Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2019-08-15 19:16:18 +02:00
commit 0e07bd8ed9
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
3 changed files with 3 additions and 2 deletions

View File

@ -59,6 +59,7 @@ phpMyAdmin - ChangeLog
- issue Added description for the _nopad (NO PAD) collation suffix
- issue #15404 Remove array/string curly braces access
- issue #15427 Fixed "FilterLanguages" option does not work (configuration)
- issue #15127 Fix remove the white square in floating menubar when reloading the designer
4.9.0.1 (2019-06-04)
- issue #14478 phpMyAdmin no longer streams the export data

View File

@ -1164,7 +1164,7 @@ Navigation.ResizeHandler = function () {
var windowWidth = $(window).width();
$('#pma_navigation').width(pos);
$('body').css('margin-' + this.left, pos + 'px');
$('#floating_menubar, #pma_console')
$('#pma_console')
.css('margin-' + this.left, (pos + resizerWidth) + 'px');
$resizer.css(this.left, pos + 'px');
if (pos === 0) {

View File

@ -434,7 +434,7 @@
{% for one_column_name in columns_list %}
<option value="{{ one_column_name }}"
{{- loop.revindex0 == 0 ? ' selected="selected"' }}>
{{ 'after %s'|trans|format(one_column_name|e) }}
{{ 'after %s'|trans|format(one_column_name) }}
</option>
{% endfor %}
</select>