Fixed error when loading favorite tables to console
The token was missing in POST request. Fixes #12990 Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
parent
bcc7c7af35
commit
baa390df89
@ -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'
|
||||
|
||||
@ -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) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user