diff --git a/ChangeLog b/ChangeLog index 0cd7b03992..bb4130a999 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 --- diff --git a/libraries/server_status_processes.lib.php b/libraries/server_status_processes.lib.php index ce9f10a921..7d31c582f4 100644 --- a/libraries/server_status_processes.lib.php +++ b/libraries/server_status_processes.lib.php @@ -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 '