From baa390df89745a31a98f56a06ca6e9b99a3a02a7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michal=20=C4=8Ciha=C5=99?= Date: Mon, 13 Feb 2017 11:34:57 +0100 Subject: [PATCH] Fixed error when loading favorite tables to console MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The token was missing in POST request. Fixes #12990 Signed-off-by: Michal Čihař --- ChangeLog | 1 + js/functions.js | 1 + 2 files changed, 2 insertions(+) diff --git a/ChangeLog b/ChangeLog index 68aaca7589..eaa5575f3e 100644 --- a/ChangeLog +++ b/ChangeLog @@ -62,6 +62,7 @@ phpMyAdmin - ChangeLog - issue #12972 Better error message when Composer has not been run - issue #12988 Do not show language selector without choices - issue #12993 Fixed external links to php documentation +- issue #12990 Fixed error when loading favorite tables to console 4.6.6 (2017-01-23) - issue #12759 Fix Notice regarding 'Undefined index: old_usergroup' diff --git a/js/functions.js b/js/functions.js index 1060d2a518..912ea18993 100644 --- a/js/functions.js +++ b/js/functions.js @@ -4193,6 +4193,7 @@ AJAX.registerOnload('functions.js', function () { favorite_tables: (isStorageSupported('localStorage') && typeof window.localStorage.favorite_tables !== 'undefined') ? window.localStorage.favorite_tables : '', + token: PMA_commonParams.get('token'), no_debug: true }, success: function (data) {