diff --git a/ChangeLog b/ChangeLog index 14bbe4d4be..e0c017d90e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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' diff --git a/js/navigation.js b/js/navigation.js index 35cf97905c..364b47f733 100644 --- a/js/navigation.js +++ b/js/navigation.js @@ -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';