Merge branch 'QA_4_6'
This commit is contained in:
commit
c2fbfc148b
@ -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 ---
|
||||
|
||||
@ -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 '
|
||||
|
||||
Loading…
Reference in New Issue
Block a user