fix #11881 Full processlist lost on refresh

Signed-off-by: Madhura Jayaratne <madhura.cj@gmail.com>
This commit is contained in:
Madhura Jayaratne 2016-01-27 21:39:52 +11:00
parent 428b74d297
commit 77922b22e4
2 changed files with 10 additions and 1 deletions

View File

@ -5,6 +5,7 @@ phpMyAdmin - ChangeLog
- issue Undefined index: is_ajax_request
- issue #11855 Fix password change on MariaDB 10.1 and newer
- issue #11874 Validate version information before further processing it
- issue #11881 Full processlist lost on refresh
4.5.4.0 (not yet released)
- issue #11724 live data edit of big sets is not working

View File

@ -165,6 +165,9 @@ function PMA_getHtmlForServerProcesslist()
if ($is_sorted && $_REQUEST['sort_order'] === 'ASC') {
$column['sort_order'] = 'DESC';
}
if (isset($_REQUEST['showExecuting'])) {
$column['showExecuting'] = 'on';
}
$retval .= '<th>';
$columnUrl = PMA_URL_getCommon($column);
@ -244,7 +247,12 @@ function PMA_getHtmlForProcessListFilter()
}
$url_params = array(
'ajax_request' => true
'ajax_request' => true,
'full' => (isset($_REQUEST['full']) ? $_REQUEST['full'] : ''),
'column_name' => (isset($_REQUEST['column_name']) ? $_REQUEST['column_name'] : ''),
'order_by_field'
=> (isset($_REQUEST['order_by_field']) ? $_REQUEST['order_by_field'] : ''),
'sort_order' => (isset($_REQUEST['sort_order']) ? $_REQUEST['sort_order'] : ''),
);
$retval = '';