Skip to content

Commit

Permalink
Merge branch 'QA_4_8'
Browse files Browse the repository at this point in the history
Signed-off-by: William Desportes <williamdes@wdes.fr>
  • Loading branch information
williamdes committed Apr 3, 2019
2 parents 0868cd1 + cae7efe commit 914756a
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 12 deletions.
1 change: 1 addition & 0 deletions ChangeLog
Expand Up @@ -88,6 +88,7 @@ phpMyAdmin - ChangeLog
- issue #14334 Fixed export table structure shows rows fields
- issue #15010 Fixed empty SQL preview modal on tbl_relation
- issue #14673 Fixed innodb & MySQL 8: DYNAMIC & COMPRESSED ROW_FORMAT missing
- issue Fixed empty success message when adding a new INDEX from left panel

4.8.5 (2019-01-25)
- issue Developer debug data was saved to the PHP error log
Expand Down
12 changes: 1 addition & 11 deletions js/functions.js
Expand Up @@ -3807,18 +3807,8 @@ function indexEditorDialog (url, title, callback_success, callback_failure) {
}
if (typeof data !== 'undefined' && data.success === true) {
PMA_ajaxShowMessage(data.message);
var $resultQuery = $('.result_query');
if ($resultQuery.length) {
$resultQuery.remove();
}
if (data.sql_query) {
$('<div class="result_query"></div>')
.html(data.sql_query)
.prependTo('#page_content');
PMA_highlightSQL($('#page_content'));
}
PMA_highlightSQL($('.result_query'));
$('.result_query .notice').remove();
$resultQuery.prepend(data.message);
/* Reload the field form*/
$('#table_index').remove();
$('<div id=\'temp_div\'><div>')
Expand Down
1 change: 0 additions & 1 deletion js/vendor/zxcvbn.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 914756a

Please sign in to comment.