Merge branch 'QA_4_6'

This commit is contained in:
Michal Čihař 2017-01-20 16:25:34 +01:00
commit c2fbfc148b
2 changed files with 2 additions and 1 deletions

View File

@ -84,6 +84,7 @@ phpMyAdmin - ChangeLog
- issue #12876 Fix possible PHP error in navigation
- issue #12881 Fix database search with newer php-gettext
- issue #12894 Fix linter error on unterminated variable name
- issue #12732 Fixed filtering for active processes
--- Older ChangeLogs can be found on our project website ---

View File

@ -113,7 +113,7 @@ function PMA_getHtmlForServerProcesslist()
$sql_query = 'SELECT * FROM `INFORMATION_SCHEMA`.`PROCESSLIST` ';
}
if (! empty($_REQUEST['showExecuting'])) {
$sql_query .= ' WHERE state = "executing" ';
$sql_query .= ' WHERE state != "" ';
}
if (!empty($_REQUEST['order_by_field']) && !empty($_REQUEST['sort_order'])) {
$sql_query .= ' ORDER BY '