Merge branch 'QA_4_7'

This commit is contained in:
Michal Čihař 2017-02-02 14:57:47 +01:00
commit b2afc36572
2 changed files with 2 additions and 1 deletions

View File

@ -56,6 +56,7 @@ phpMyAdmin - ChangeLog
- issue #12924 Do not show errors from OpenSSL cookie encryption/decryption
- issue #12945 Fixed hint rendering on adding new user
- issue #12941 Fixed sorting of tables in relation view
- issue #12936 Fixed tables pagination in navigation panel
4.6.6 (2017-01-23)
- issue #12759 Fix Notice regarding 'Undefined index: old_usergroup'

View File

@ -1037,7 +1037,7 @@ function PMA_navigationTreePagination($this) {
var url, params;
if ($this[0].tagName == 'A') {
url = $this.attr('href');
params = 'ajax_request=true';
params = 'ajax_request=true&token=' + PMA_commonParams.get('token');
} else { // tagName == 'SELECT'
url = 'navigation.php';
params = $this.closest("form").serialize() + '&ajax_request=true';