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:
Michal Čihař 2017-03-03 14:42:24 +01:00
parent 3f918a8c7f
commit dbce3b54d1
2 changed files with 3 additions and 1 deletions

View File

@ -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'

View File

@ -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',