Merge branch 'QA_4_7'

This commit is contained in:
Michal Čihař 2017-02-20 09:08:12 +01:00
commit 7e1be7bd36
4 changed files with 2 additions and 3 deletions

View File

@ -84,6 +84,7 @@ phpMyAdmin - ChangeLog
- issue #12345 Correctly show affected rows for LOAD DATA queries
- issue #13010 Copy database: SQL error for copying PMADB metadata
- issue #13002 Fixed OpenDocument exports
- issue #13000 Align NULL values according to the column alignment
4.6.6 (2017-01-23)
- issue #12759 Fix Notice regarding 'Undefined index: old_usergroup'

View File

@ -2087,7 +2087,7 @@ function bindCodeMirrorToInlineEditor() {
function catchKeypressesFromSqlInlineEdit(event) {
// ctrl-enter is 10 in chrome and ie, but 13 in ff
if (event.ctrlKey && (event.keyCode == 13 || event.keyCode == 10)) {
if ((event.ctrlKey || event.metaKey) && (event.keyCode == 13 || event.keyCode == 10)) {
$("#sql_query_edit_save").trigger('click');
}
}

View File

@ -307,7 +307,6 @@ th.condition {
*/
td.null {
font-style: italic;
text-align: <?php echo $right; ?>;
color: #7d7d7d;
}

View File

@ -611,7 +611,6 @@ tr:last-child td.condition {
*/
td.null {
font-style: italic;
text-align: <?php echo $right; ?>;
color: #7d7d7d;
}