Fix query simulating for more servers
The server parameter was missing. Fixes #13047 Signed-off-by: Michal Čihař <michal@cihar.com>
This commit is contained in:
parent
3f918a8c7f
commit
dbce3b54d1
@ -93,6 +93,7 @@ phpMyAdmin - ChangeLog
|
||||
- issue #12967 Fixed related field selection for native relations
|
||||
- issue #13045 Properly escape MIME transformatoin names
|
||||
- issue #13028 Always show 100% in font selector
|
||||
- issue #13047 Fix query simulating for more servers
|
||||
|
||||
4.6.6 (2017-01-23)
|
||||
- issue #12759 Fix Notice regarding 'Undefined index: old_usergroup'
|
||||
|
||||
@ -585,7 +585,8 @@ AJAX.registerOnload('sql.js', function () {
|
||||
type: 'POST',
|
||||
url: $form.attr('action'),
|
||||
data: {
|
||||
token: $form.find('input[name="token"]').val(),
|
||||
token: PMA_commonParams.get('token'),
|
||||
server: PMA_commonParams.get('server'),
|
||||
db: db_name,
|
||||
ajax_request: '1',
|
||||
simulate_dml: '1',
|
||||
|
||||
Loading…
Reference in New Issue
Block a user