Fix #15434 - Add support for middle click on table sort column

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2019-11-24 16:50:10 +01:00
parent 2f0fff5fa1
commit ecb5faac0c
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889

View File

@ -1856,6 +1856,7 @@ class Results
'db' => $this->__get('db'),
'table' => $this->__get('table'),
'sql_query' => $single_sorted_sql_query,
'sql_signature' => Core::signSqlQuery($single_sorted_sql_query),
'session_max_rows' => $session_max_rows,
'is_browse_distinct' => $this->__get('is_browse_distinct'),
);
@ -1864,6 +1865,7 @@ class Results
'db' => $this->__get('db'),
'table' => $this->__get('table'),
'sql_query' => $multi_sorted_sql_query,
'sql_signature' => Core::signSqlQuery($multi_sorted_sql_query),
'session_max_rows' => $session_max_rows,
'is_browse_distinct' => $this->__get('is_browse_distinct'),
);